Functions that represent AWS CDK enums and builders in the software.amazon.awscdk.services.iam package.
Functions that represent AWS CDK enums and builders in the software.amazon.awscdk.services.iam package.
(access-key-builder scope id config)
Creates a AccessKey$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `AccessKey$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(access-key-props-builder id config)
Creates a AccessKeyProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `AccessKeyProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(access-key-status config id item-key)
The access-key-status
function data interprets values in the provided config data into a
AccessKeyStatus
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
AccessKeyStatus
- the value is returned.:inactive
- AccessKeyStatus/INACTIVE
is returned:active
- AccessKeyStatus/ACTIVE
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `access-key-status` function data interprets values in the provided config data into a `AccessKeyStatus` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `AccessKeyStatus` - the value is returned. * is `:inactive` - `AccessKeyStatus/INACTIVE` is returned * is `:active` - `AccessKeyStatus/ACTIVE` is returned If a value is not found or matches the above criteria, nil is returned.
(add-to-principal-policy-result-builder id config)
Creates a AddToPrincipalPolicyResult$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `AddToPrincipalPolicyResult$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(add-to-resource-policy-result-builder id config)
Creates a AddToResourcePolicyResult$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `AddToResourcePolicyResult$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(build-access-key-builder builder id config)
The build-access-key-builder function updates a AccessKey$Builder instance using the provided configuration. The function takes the AccessKey$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
serial | java.lang.Number | cdk.support/lookup-entry | :serial |
status | software.amazon.awscdk.services.iam.AccessKeyStatus | cdk.api.services.iam/access-key-status | :status |
user | software.amazon.awscdk.services.iam.IUser | cdk.support/lookup-entry | :user |
The build-access-key-builder function updates a AccessKey$Builder instance using the provided configuration. The function takes the AccessKey$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `serial` | java.lang.Number | [[cdk.support/lookup-entry]] | `:serial` | | `status` | software.amazon.awscdk.services.iam.AccessKeyStatus | [[cdk.api.services.iam/access-key-status]] | `:status` | | `user` | software.amazon.awscdk.services.iam.IUser | [[cdk.support/lookup-entry]] | `:user` |
(build-access-key-props-builder builder id config)
The build-access-key-props-builder function updates a AccessKeyProps$Builder instance using the provided configuration. The function takes the AccessKeyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
serial | java.lang.Number | cdk.support/lookup-entry | :serial |
status | software.amazon.awscdk.services.iam.AccessKeyStatus | cdk.api.services.iam/access-key-status | :status |
user | software.amazon.awscdk.services.iam.IUser | cdk.support/lookup-entry | :user |
The build-access-key-props-builder function updates a AccessKeyProps$Builder instance using the provided configuration. The function takes the AccessKeyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `serial` | java.lang.Number | [[cdk.support/lookup-entry]] | `:serial` | | `status` | software.amazon.awscdk.services.iam.AccessKeyStatus | [[cdk.api.services.iam/access-key-status]] | `:status` | | `user` | software.amazon.awscdk.services.iam.IUser | [[cdk.support/lookup-entry]] | `:user` |
(build-add-to-principal-policy-result-builder builder id config)
The build-add-to-principal-policy-result-builder function updates a AddToPrincipalPolicyResult$Builder instance using the provided configuration. The function takes the AddToPrincipalPolicyResult$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
policyDependable | software.constructs.IDependable | cdk.support/lookup-entry | :policy-dependable |
statementAdded | java.lang.Boolean | cdk.support/lookup-entry | :statement-added |
The build-add-to-principal-policy-result-builder function updates a AddToPrincipalPolicyResult$Builder instance using the provided configuration. The function takes the AddToPrincipalPolicyResult$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `policyDependable` | software.constructs.IDependable | [[cdk.support/lookup-entry]] | `:policy-dependable` | | `statementAdded` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:statement-added` |
(build-add-to-resource-policy-result-builder builder id config)
The build-add-to-resource-policy-result-builder function updates a AddToResourcePolicyResult$Builder instance using the provided configuration. The function takes the AddToResourcePolicyResult$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
policyDependable | software.constructs.IDependable | cdk.support/lookup-entry | :policy-dependable |
statementAdded | java.lang.Boolean | cdk.support/lookup-entry | :statement-added |
The build-add-to-resource-policy-result-builder function updates a AddToResourcePolicyResult$Builder instance using the provided configuration. The function takes the AddToResourcePolicyResult$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `policyDependable` | software.constructs.IDependable | [[cdk.support/lookup-entry]] | `:policy-dependable` | | `statementAdded` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:statement-added` |
(build-cfn-access-key-builder builder id config)
The build-cfn-access-key-builder function updates a CfnAccessKey$Builder instance using the provided configuration. The function takes the CfnAccessKey$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
serial | java.lang.Number | cdk.support/lookup-entry | :serial |
status | java.lang.String | cdk.support/lookup-entry | :status |
userName | java.lang.String | cdk.support/lookup-entry | :user-name |
The build-cfn-access-key-builder function updates a CfnAccessKey$Builder instance using the provided configuration. The function takes the CfnAccessKey$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `serial` | java.lang.Number | [[cdk.support/lookup-entry]] | `:serial` | | `status` | java.lang.String | [[cdk.support/lookup-entry]] | `:status` | | `userName` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-name` |
(build-cfn-access-key-props-builder builder id config)
The build-cfn-access-key-props-builder function updates a CfnAccessKeyProps$Builder instance using the provided configuration. The function takes the CfnAccessKeyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
serial | java.lang.Number | cdk.support/lookup-entry | :serial |
status | java.lang.String | cdk.support/lookup-entry | :status |
userName | java.lang.String | cdk.support/lookup-entry | :user-name |
The build-cfn-access-key-props-builder function updates a CfnAccessKeyProps$Builder instance using the provided configuration. The function takes the CfnAccessKeyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `serial` | java.lang.Number | [[cdk.support/lookup-entry]] | `:serial` | | `status` | java.lang.String | [[cdk.support/lookup-entry]] | `:status` | | `userName` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-name` |
(build-cfn-group-builder builder id config)
The build-cfn-group-builder function updates a CfnGroup$Builder instance using the provided configuration. The function takes the CfnGroup$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
groupName | java.lang.String | cdk.support/lookup-entry | :group-name |
managedPolicyArns | java.util.List | cdk.support/lookup-entry | :managed-policy-arns |
path | java.lang.String | cdk.support/lookup-entry | :path |
policies | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :policies |
The build-cfn-group-builder function updates a CfnGroup$Builder instance using the provided configuration. The function takes the CfnGroup$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `groupName` | java.lang.String | [[cdk.support/lookup-entry]] | `:group-name` | | `managedPolicyArns` | java.util.List | [[cdk.support/lookup-entry]] | `:managed-policy-arns` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `policies` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:policies` |
(build-cfn-group-policy-builder builder id config)
The build-cfn-group-policy-builder function updates a CfnGroupPolicy$Builder instance using the provided configuration. The function takes the CfnGroupPolicy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
groupName | java.lang.String | cdk.support/lookup-entry | :group-name |
policyDocument | java.lang.Object | cdk.support/lookup-entry | :policy-document |
policyName | java.lang.String | cdk.support/lookup-entry | :policy-name |
The build-cfn-group-policy-builder function updates a CfnGroupPolicy$Builder instance using the provided configuration. The function takes the CfnGroupPolicy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `groupName` | java.lang.String | [[cdk.support/lookup-entry]] | `:group-name` | | `policyDocument` | java.lang.Object | [[cdk.support/lookup-entry]] | `:policy-document` | | `policyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:policy-name` |
(build-cfn-group-policy-property-builder builder id config)
The build-cfn-group-policy-property-builder function updates a CfnGroup$PolicyProperty$Builder instance using the provided configuration. The function takes the CfnGroup$PolicyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
policyDocument | java.lang.Object | cdk.support/lookup-entry | :policy-document |
policyName | java.lang.String | cdk.support/lookup-entry | :policy-name |
The build-cfn-group-policy-property-builder function updates a CfnGroup$PolicyProperty$Builder instance using the provided configuration. The function takes the CfnGroup$PolicyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `policyDocument` | java.lang.Object | [[cdk.support/lookup-entry]] | `:policy-document` | | `policyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:policy-name` |
(build-cfn-group-policy-props-builder builder id config)
The build-cfn-group-policy-props-builder function updates a CfnGroupPolicyProps$Builder instance using the provided configuration. The function takes the CfnGroupPolicyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
groupName | java.lang.String | cdk.support/lookup-entry | :group-name |
policyDocument | java.lang.Object | cdk.support/lookup-entry | :policy-document |
policyName | java.lang.String | cdk.support/lookup-entry | :policy-name |
The build-cfn-group-policy-props-builder function updates a CfnGroupPolicyProps$Builder instance using the provided configuration. The function takes the CfnGroupPolicyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `groupName` | java.lang.String | [[cdk.support/lookup-entry]] | `:group-name` | | `policyDocument` | java.lang.Object | [[cdk.support/lookup-entry]] | `:policy-document` | | `policyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:policy-name` |
(build-cfn-group-props-builder builder id config)
The build-cfn-group-props-builder function updates a CfnGroupProps$Builder instance using the provided configuration. The function takes the CfnGroupProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
groupName | java.lang.String | cdk.support/lookup-entry | :group-name |
managedPolicyArns | java.util.List | cdk.support/lookup-entry | :managed-policy-arns |
path | java.lang.String | cdk.support/lookup-entry | :path |
policies | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :policies |
The build-cfn-group-props-builder function updates a CfnGroupProps$Builder instance using the provided configuration. The function takes the CfnGroupProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `groupName` | java.lang.String | [[cdk.support/lookup-entry]] | `:group-name` | | `managedPolicyArns` | java.util.List | [[cdk.support/lookup-entry]] | `:managed-policy-arns` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `policies` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:policies` |
(build-cfn-instance-profile-builder builder id config)
The build-cfn-instance-profile-builder function updates a CfnInstanceProfile$Builder instance using the provided configuration. The function takes the CfnInstanceProfile$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
instanceProfileName | java.lang.String | cdk.support/lookup-entry | :instance-profile-name |
path | java.lang.String | cdk.support/lookup-entry | :path |
roles | java.util.List | cdk.support/lookup-entry | :roles |
The build-cfn-instance-profile-builder function updates a CfnInstanceProfile$Builder instance using the provided configuration. The function takes the CfnInstanceProfile$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `instanceProfileName` | java.lang.String | [[cdk.support/lookup-entry]] | `:instance-profile-name` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `roles` | java.util.List | [[cdk.support/lookup-entry]] | `:roles` |
(build-cfn-instance-profile-props-builder builder id config)
The build-cfn-instance-profile-props-builder function updates a CfnInstanceProfileProps$Builder instance using the provided configuration. The function takes the CfnInstanceProfileProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
instanceProfileName | java.lang.String | cdk.support/lookup-entry | :instance-profile-name |
path | java.lang.String | cdk.support/lookup-entry | :path |
roles | java.util.List | cdk.support/lookup-entry | :roles |
The build-cfn-instance-profile-props-builder function updates a CfnInstanceProfileProps$Builder instance using the provided configuration. The function takes the CfnInstanceProfileProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `instanceProfileName` | java.lang.String | [[cdk.support/lookup-entry]] | `:instance-profile-name` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `roles` | java.util.List | [[cdk.support/lookup-entry]] | `:roles` |
(build-cfn-managed-policy-builder builder id config)
The build-cfn-managed-policy-builder function updates a CfnManagedPolicy$Builder instance using the provided configuration. The function takes the CfnManagedPolicy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
description | java.lang.String | cdk.support/lookup-entry | :description |
groups | java.util.List | cdk.support/lookup-entry | :groups |
managedPolicyName | java.lang.String | cdk.support/lookup-entry | :managed-policy-name |
path | java.lang.String | cdk.support/lookup-entry | :path |
policyDocument | java.lang.Object | cdk.support/lookup-entry | :policy-document |
roles | java.util.List | cdk.support/lookup-entry | :roles |
users | java.util.List | cdk.support/lookup-entry | :users |
The build-cfn-managed-policy-builder function updates a CfnManagedPolicy$Builder instance using the provided configuration. The function takes the CfnManagedPolicy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `groups` | java.util.List | [[cdk.support/lookup-entry]] | `:groups` | | `managedPolicyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:managed-policy-name` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `policyDocument` | java.lang.Object | [[cdk.support/lookup-entry]] | `:policy-document` | | `roles` | java.util.List | [[cdk.support/lookup-entry]] | `:roles` | | `users` | java.util.List | [[cdk.support/lookup-entry]] | `:users` |
(build-cfn-managed-policy-props-builder builder id config)
The build-cfn-managed-policy-props-builder function updates a CfnManagedPolicyProps$Builder instance using the provided configuration. The function takes the CfnManagedPolicyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
description | java.lang.String | cdk.support/lookup-entry | :description |
groups | java.util.List | cdk.support/lookup-entry | :groups |
managedPolicyName | java.lang.String | cdk.support/lookup-entry | :managed-policy-name |
path | java.lang.String | cdk.support/lookup-entry | :path |
policyDocument | java.lang.Object | cdk.support/lookup-entry | :policy-document |
roles | java.util.List | cdk.support/lookup-entry | :roles |
users | java.util.List | cdk.support/lookup-entry | :users |
The build-cfn-managed-policy-props-builder function updates a CfnManagedPolicyProps$Builder instance using the provided configuration. The function takes the CfnManagedPolicyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `groups` | java.util.List | [[cdk.support/lookup-entry]] | `:groups` | | `managedPolicyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:managed-policy-name` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `policyDocument` | java.lang.Object | [[cdk.support/lookup-entry]] | `:policy-document` | | `roles` | java.util.List | [[cdk.support/lookup-entry]] | `:roles` | | `users` | java.util.List | [[cdk.support/lookup-entry]] | `:users` |
(build-cfn-oidc-provider-builder builder id config)
The build-cfn-oidc-provider-builder function updates a CfnOIDCProvider$Builder instance using the provided configuration. The function takes the CfnOIDCProvider$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
clientIdList | java.util.List | cdk.support/lookup-entry | :client-id-list |
tags | java.util.List | cdk.support/lookup-entry | :tags |
thumbprintList | java.util.List | cdk.support/lookup-entry | :thumbprint-list |
url | java.lang.String | cdk.support/lookup-entry | :url |
The build-cfn-oidc-provider-builder function updates a CfnOIDCProvider$Builder instance using the provided configuration. The function takes the CfnOIDCProvider$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `clientIdList` | java.util.List | [[cdk.support/lookup-entry]] | `:client-id-list` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` | | `thumbprintList` | java.util.List | [[cdk.support/lookup-entry]] | `:thumbprint-list` | | `url` | java.lang.String | [[cdk.support/lookup-entry]] | `:url` |
(build-cfn-oidc-provider-props-builder builder id config)
The build-cfn-oidc-provider-props-builder function updates a CfnOIDCProviderProps$Builder instance using the provided configuration. The function takes the CfnOIDCProviderProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
clientIdList | java.util.List | cdk.support/lookup-entry | :client-id-list |
tags | java.util.List | cdk.support/lookup-entry | :tags |
thumbprintList | java.util.List | cdk.support/lookup-entry | :thumbprint-list |
url | java.lang.String | cdk.support/lookup-entry | :url |
The build-cfn-oidc-provider-props-builder function updates a CfnOIDCProviderProps$Builder instance using the provided configuration. The function takes the CfnOIDCProviderProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `clientIdList` | java.util.List | [[cdk.support/lookup-entry]] | `:client-id-list` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` | | `thumbprintList` | java.util.List | [[cdk.support/lookup-entry]] | `:thumbprint-list` | | `url` | java.lang.String | [[cdk.support/lookup-entry]] | `:url` |
(build-cfn-policy-builder builder id config)
The build-cfn-policy-builder function updates a CfnPolicy$Builder instance using the provided configuration. The function takes the CfnPolicy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
groups | java.util.List | cdk.support/lookup-entry | :groups |
policyDocument | java.lang.Object | cdk.support/lookup-entry | :policy-document |
policyName | java.lang.String | cdk.support/lookup-entry | :policy-name |
roles | java.util.List | cdk.support/lookup-entry | :roles |
users | java.util.List | cdk.support/lookup-entry | :users |
The build-cfn-policy-builder function updates a CfnPolicy$Builder instance using the provided configuration. The function takes the CfnPolicy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `groups` | java.util.List | [[cdk.support/lookup-entry]] | `:groups` | | `policyDocument` | java.lang.Object | [[cdk.support/lookup-entry]] | `:policy-document` | | `policyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:policy-name` | | `roles` | java.util.List | [[cdk.support/lookup-entry]] | `:roles` | | `users` | java.util.List | [[cdk.support/lookup-entry]] | `:users` |
(build-cfn-policy-props-builder builder id config)
The build-cfn-policy-props-builder function updates a CfnPolicyProps$Builder instance using the provided configuration. The function takes the CfnPolicyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
groups | java.util.List | cdk.support/lookup-entry | :groups |
policyDocument | java.lang.Object | cdk.support/lookup-entry | :policy-document |
policyName | java.lang.String | cdk.support/lookup-entry | :policy-name |
roles | java.util.List | cdk.support/lookup-entry | :roles |
users | java.util.List | cdk.support/lookup-entry | :users |
The build-cfn-policy-props-builder function updates a CfnPolicyProps$Builder instance using the provided configuration. The function takes the CfnPolicyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `groups` | java.util.List | [[cdk.support/lookup-entry]] | `:groups` | | `policyDocument` | java.lang.Object | [[cdk.support/lookup-entry]] | `:policy-document` | | `policyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:policy-name` | | `roles` | java.util.List | [[cdk.support/lookup-entry]] | `:roles` | | `users` | java.util.List | [[cdk.support/lookup-entry]] | `:users` |
(build-cfn-role-builder builder id config)
The build-cfn-role-builder function updates a CfnRole$Builder instance using the provided configuration. The function takes the CfnRole$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
assumeRolePolicyDocument | java.lang.Object | cdk.support/lookup-entry | :assume-role-policy-document |
description | java.lang.String | cdk.support/lookup-entry | :description |
managedPolicyArns | java.util.List | cdk.support/lookup-entry | :managed-policy-arns |
maxSessionDuration | java.lang.Number | cdk.support/lookup-entry | :max-session-duration |
path | java.lang.String | cdk.support/lookup-entry | :path |
permissionsBoundary | java.lang.String | cdk.support/lookup-entry | :permissions-boundary |
policies | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :policies |
roleName | java.lang.String | cdk.support/lookup-entry | :role-name |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-role-builder function updates a CfnRole$Builder instance using the provided configuration. The function takes the CfnRole$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `assumeRolePolicyDocument` | java.lang.Object | [[cdk.support/lookup-entry]] | `:assume-role-policy-document` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `managedPolicyArns` | java.util.List | [[cdk.support/lookup-entry]] | `:managed-policy-arns` | | `maxSessionDuration` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-session-duration` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `permissionsBoundary` | java.lang.String | [[cdk.support/lookup-entry]] | `:permissions-boundary` | | `policies` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:policies` | | `roleName` | java.lang.String | [[cdk.support/lookup-entry]] | `:role-name` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-role-policy-builder builder id config)
The build-cfn-role-policy-builder function updates a CfnRolePolicy$Builder instance using the provided configuration. The function takes the CfnRolePolicy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
policyDocument | java.lang.Object | cdk.support/lookup-entry | :policy-document |
policyName | java.lang.String | cdk.support/lookup-entry | :policy-name |
roleName | java.lang.String | cdk.support/lookup-entry | :role-name |
The build-cfn-role-policy-builder function updates a CfnRolePolicy$Builder instance using the provided configuration. The function takes the CfnRolePolicy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `policyDocument` | java.lang.Object | [[cdk.support/lookup-entry]] | `:policy-document` | | `policyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:policy-name` | | `roleName` | java.lang.String | [[cdk.support/lookup-entry]] | `:role-name` |
(build-cfn-role-policy-property-builder builder id config)
The build-cfn-role-policy-property-builder function updates a CfnRole$PolicyProperty$Builder instance using the provided configuration. The function takes the CfnRole$PolicyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
policyDocument | java.lang.Object | cdk.support/lookup-entry | :policy-document |
policyName | java.lang.String | cdk.support/lookup-entry | :policy-name |
The build-cfn-role-policy-property-builder function updates a CfnRole$PolicyProperty$Builder instance using the provided configuration. The function takes the CfnRole$PolicyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `policyDocument` | java.lang.Object | [[cdk.support/lookup-entry]] | `:policy-document` | | `policyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:policy-name` |
(build-cfn-role-policy-props-builder builder id config)
The build-cfn-role-policy-props-builder function updates a CfnRolePolicyProps$Builder instance using the provided configuration. The function takes the CfnRolePolicyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
policyDocument | java.lang.Object | cdk.support/lookup-entry | :policy-document |
policyName | java.lang.String | cdk.support/lookup-entry | :policy-name |
roleName | java.lang.String | cdk.support/lookup-entry | :role-name |
The build-cfn-role-policy-props-builder function updates a CfnRolePolicyProps$Builder instance using the provided configuration. The function takes the CfnRolePolicyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `policyDocument` | java.lang.Object | [[cdk.support/lookup-entry]] | `:policy-document` | | `policyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:policy-name` | | `roleName` | java.lang.String | [[cdk.support/lookup-entry]] | `:role-name` |
(build-cfn-role-props-builder builder id config)
The build-cfn-role-props-builder function updates a CfnRoleProps$Builder instance using the provided configuration. The function takes the CfnRoleProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
assumeRolePolicyDocument | java.lang.Object | cdk.support/lookup-entry | :assume-role-policy-document |
description | java.lang.String | cdk.support/lookup-entry | :description |
managedPolicyArns | java.util.List | cdk.support/lookup-entry | :managed-policy-arns |
maxSessionDuration | java.lang.Number | cdk.support/lookup-entry | :max-session-duration |
path | java.lang.String | cdk.support/lookup-entry | :path |
permissionsBoundary | java.lang.String | cdk.support/lookup-entry | :permissions-boundary |
policies | java.util.List | cdk.support/lookup-entry | :policies |
roleName | java.lang.String | cdk.support/lookup-entry | :role-name |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-role-props-builder function updates a CfnRoleProps$Builder instance using the provided configuration. The function takes the CfnRoleProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `assumeRolePolicyDocument` | java.lang.Object | [[cdk.support/lookup-entry]] | `:assume-role-policy-document` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `managedPolicyArns` | java.util.List | [[cdk.support/lookup-entry]] | `:managed-policy-arns` | | `maxSessionDuration` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-session-duration` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `permissionsBoundary` | java.lang.String | [[cdk.support/lookup-entry]] | `:permissions-boundary` | | `policies` | java.util.List | [[cdk.support/lookup-entry]] | `:policies` | | `roleName` | java.lang.String | [[cdk.support/lookup-entry]] | `:role-name` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-saml-provider-builder builder id config)
The build-cfn-saml-provider-builder function updates a CfnSAMLProvider$Builder instance using the provided configuration. The function takes the CfnSAMLProvider$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
name | java.lang.String | cdk.support/lookup-entry | :name |
samlMetadataDocument | java.lang.String | cdk.support/lookup-entry | :saml-metadata-document |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-saml-provider-builder function updates a CfnSAMLProvider$Builder instance using the provided configuration. The function takes the CfnSAMLProvider$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `samlMetadataDocument` | java.lang.String | [[cdk.support/lookup-entry]] | `:saml-metadata-document` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-saml-provider-props-builder builder id config)
The build-cfn-saml-provider-props-builder function updates a CfnSAMLProviderProps$Builder instance using the provided configuration. The function takes the CfnSAMLProviderProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
name | java.lang.String | cdk.support/lookup-entry | :name |
samlMetadataDocument | java.lang.String | cdk.support/lookup-entry | :saml-metadata-document |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-saml-provider-props-builder function updates a CfnSAMLProviderProps$Builder instance using the provided configuration. The function takes the CfnSAMLProviderProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` | | `samlMetadataDocument` | java.lang.String | [[cdk.support/lookup-entry]] | `:saml-metadata-document` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-server-certificate-builder builder id config)
The build-cfn-server-certificate-builder function updates a CfnServerCertificate$Builder instance using the provided configuration. The function takes the CfnServerCertificate$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
certificateBody | java.lang.String | cdk.support/lookup-entry | :certificate-body |
certificateChain | java.lang.String | cdk.support/lookup-entry | :certificate-chain |
path | java.lang.String | cdk.support/lookup-entry | :path |
privateKey | java.lang.String | cdk.support/lookup-entry | :private-key |
serverCertificateName | java.lang.String | cdk.support/lookup-entry | :server-certificate-name |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-server-certificate-builder function updates a CfnServerCertificate$Builder instance using the provided configuration. The function takes the CfnServerCertificate$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `certificateBody` | java.lang.String | [[cdk.support/lookup-entry]] | `:certificate-body` | | `certificateChain` | java.lang.String | [[cdk.support/lookup-entry]] | `:certificate-chain` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `privateKey` | java.lang.String | [[cdk.support/lookup-entry]] | `:private-key` | | `serverCertificateName` | java.lang.String | [[cdk.support/lookup-entry]] | `:server-certificate-name` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-server-certificate-props-builder builder id config)
The build-cfn-server-certificate-props-builder function updates a CfnServerCertificateProps$Builder instance using the provided configuration. The function takes the CfnServerCertificateProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
certificateBody | java.lang.String | cdk.support/lookup-entry | :certificate-body |
certificateChain | java.lang.String | cdk.support/lookup-entry | :certificate-chain |
path | java.lang.String | cdk.support/lookup-entry | :path |
privateKey | java.lang.String | cdk.support/lookup-entry | :private-key |
serverCertificateName | java.lang.String | cdk.support/lookup-entry | :server-certificate-name |
tags | java.util.List | cdk.support/lookup-entry | :tags |
The build-cfn-server-certificate-props-builder function updates a CfnServerCertificateProps$Builder instance using the provided configuration. The function takes the CfnServerCertificateProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `certificateBody` | java.lang.String | [[cdk.support/lookup-entry]] | `:certificate-body` | | `certificateChain` | java.lang.String | [[cdk.support/lookup-entry]] | `:certificate-chain` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `privateKey` | java.lang.String | [[cdk.support/lookup-entry]] | `:private-key` | | `serverCertificateName` | java.lang.String | [[cdk.support/lookup-entry]] | `:server-certificate-name` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` |
(build-cfn-service-linked-role-builder builder id config)
The build-cfn-service-linked-role-builder function updates a CfnServiceLinkedRole$Builder instance using the provided configuration. The function takes the CfnServiceLinkedRole$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
awsServiceName | java.lang.String | cdk.support/lookup-entry | :aws-service-name |
customSuffix | java.lang.String | cdk.support/lookup-entry | :custom-suffix |
description | java.lang.String | cdk.support/lookup-entry | :description |
The build-cfn-service-linked-role-builder function updates a CfnServiceLinkedRole$Builder instance using the provided configuration. The function takes the CfnServiceLinkedRole$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `awsServiceName` | java.lang.String | [[cdk.support/lookup-entry]] | `:aws-service-name` | | `customSuffix` | java.lang.String | [[cdk.support/lookup-entry]] | `:custom-suffix` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
(build-cfn-service-linked-role-props-builder builder id config)
The build-cfn-service-linked-role-props-builder function updates a CfnServiceLinkedRoleProps$Builder instance using the provided configuration. The function takes the CfnServiceLinkedRoleProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
awsServiceName | java.lang.String | cdk.support/lookup-entry | :aws-service-name |
customSuffix | java.lang.String | cdk.support/lookup-entry | :custom-suffix |
description | java.lang.String | cdk.support/lookup-entry | :description |
The build-cfn-service-linked-role-props-builder function updates a CfnServiceLinkedRoleProps$Builder instance using the provided configuration. The function takes the CfnServiceLinkedRoleProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `awsServiceName` | java.lang.String | [[cdk.support/lookup-entry]] | `:aws-service-name` | | `customSuffix` | java.lang.String | [[cdk.support/lookup-entry]] | `:custom-suffix` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` |
(build-cfn-user-builder builder id config)
The build-cfn-user-builder function updates a CfnUser$Builder instance using the provided configuration. The function takes the CfnUser$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
groups | java.util.List | cdk.support/lookup-entry | :groups |
loginProfile | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :login-profile |
managedPolicyArns | java.util.List | cdk.support/lookup-entry | :managed-policy-arns |
path | java.lang.String | cdk.support/lookup-entry | :path |
permissionsBoundary | java.lang.String | cdk.support/lookup-entry | :permissions-boundary |
policies | software.amazon.awscdk.IResolvable | cdk.support/lookup-entry | :policies |
tags | java.util.List | cdk.support/lookup-entry | :tags |
userName | java.lang.String | cdk.support/lookup-entry | :user-name |
The build-cfn-user-builder function updates a CfnUser$Builder instance using the provided configuration. The function takes the CfnUser$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `groups` | java.util.List | [[cdk.support/lookup-entry]] | `:groups` | | `loginProfile` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:login-profile` | | `managedPolicyArns` | java.util.List | [[cdk.support/lookup-entry]] | `:managed-policy-arns` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `permissionsBoundary` | java.lang.String | [[cdk.support/lookup-entry]] | `:permissions-boundary` | | `policies` | software.amazon.awscdk.IResolvable | [[cdk.support/lookup-entry]] | `:policies` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` | | `userName` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-name` |
(build-cfn-user-login-profile-property-builder builder id config)
The build-cfn-user-login-profile-property-builder function updates a CfnUser$LoginProfileProperty$Builder instance using the provided configuration. The function takes the CfnUser$LoginProfileProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
password | java.lang.String | cdk.support/lookup-entry | :password |
passwordResetRequired | java.lang.Boolean | cdk.support/lookup-entry | :password-reset-required |
The build-cfn-user-login-profile-property-builder function updates a CfnUser$LoginProfileProperty$Builder instance using the provided configuration. The function takes the CfnUser$LoginProfileProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `password` | java.lang.String | [[cdk.support/lookup-entry]] | `:password` | | `passwordResetRequired` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:password-reset-required` |
(build-cfn-user-policy-builder builder id config)
The build-cfn-user-policy-builder function updates a CfnUserPolicy$Builder instance using the provided configuration. The function takes the CfnUserPolicy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
policyDocument | java.lang.Object | cdk.support/lookup-entry | :policy-document |
policyName | java.lang.String | cdk.support/lookup-entry | :policy-name |
userName | java.lang.String | cdk.support/lookup-entry | :user-name |
The build-cfn-user-policy-builder function updates a CfnUserPolicy$Builder instance using the provided configuration. The function takes the CfnUserPolicy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `policyDocument` | java.lang.Object | [[cdk.support/lookup-entry]] | `:policy-document` | | `policyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:policy-name` | | `userName` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-name` |
(build-cfn-user-policy-property-builder builder id config)
The build-cfn-user-policy-property-builder function updates a CfnUser$PolicyProperty$Builder instance using the provided configuration. The function takes the CfnUser$PolicyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
policyDocument | java.lang.Object | cdk.support/lookup-entry | :policy-document |
policyName | java.lang.String | cdk.support/lookup-entry | :policy-name |
The build-cfn-user-policy-property-builder function updates a CfnUser$PolicyProperty$Builder instance using the provided configuration. The function takes the CfnUser$PolicyProperty$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `policyDocument` | java.lang.Object | [[cdk.support/lookup-entry]] | `:policy-document` | | `policyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:policy-name` |
(build-cfn-user-policy-props-builder builder id config)
The build-cfn-user-policy-props-builder function updates a CfnUserPolicyProps$Builder instance using the provided configuration. The function takes the CfnUserPolicyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
policyDocument | java.lang.Object | cdk.support/lookup-entry | :policy-document |
policyName | java.lang.String | cdk.support/lookup-entry | :policy-name |
userName | java.lang.String | cdk.support/lookup-entry | :user-name |
The build-cfn-user-policy-props-builder function updates a CfnUserPolicyProps$Builder instance using the provided configuration. The function takes the CfnUserPolicyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `policyDocument` | java.lang.Object | [[cdk.support/lookup-entry]] | `:policy-document` | | `policyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:policy-name` | | `userName` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-name` |
(build-cfn-user-props-builder builder id config)
The build-cfn-user-props-builder function updates a CfnUserProps$Builder instance using the provided configuration. The function takes the CfnUserProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
groups | java.util.List | cdk.support/lookup-entry | :groups |
loginProfile | software.amazon.awscdk.services.iam.CfnUser$LoginProfileProperty | cdk.support/lookup-entry | :login-profile |
managedPolicyArns | java.util.List | cdk.support/lookup-entry | :managed-policy-arns |
path | java.lang.String | cdk.support/lookup-entry | :path |
permissionsBoundary | java.lang.String | cdk.support/lookup-entry | :permissions-boundary |
policies | java.util.List | cdk.support/lookup-entry | :policies |
tags | java.util.List | cdk.support/lookup-entry | :tags |
userName | java.lang.String | cdk.support/lookup-entry | :user-name |
The build-cfn-user-props-builder function updates a CfnUserProps$Builder instance using the provided configuration. The function takes the CfnUserProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `groups` | java.util.List | [[cdk.support/lookup-entry]] | `:groups` | | `loginProfile` | software.amazon.awscdk.services.iam.CfnUser$LoginProfileProperty | [[cdk.support/lookup-entry]] | `:login-profile` | | `managedPolicyArns` | java.util.List | [[cdk.support/lookup-entry]] | `:managed-policy-arns` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `permissionsBoundary` | java.lang.String | [[cdk.support/lookup-entry]] | `:permissions-boundary` | | `policies` | java.util.List | [[cdk.support/lookup-entry]] | `:policies` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` | | `userName` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-name` |
(build-cfn-user-to-group-addition-builder builder id config)
The build-cfn-user-to-group-addition-builder function updates a CfnUserToGroupAddition$Builder instance using the provided configuration. The function takes the CfnUserToGroupAddition$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
groupName | java.lang.String | cdk.support/lookup-entry | :group-name |
users | java.util.List | cdk.support/lookup-entry | :users |
The build-cfn-user-to-group-addition-builder function updates a CfnUserToGroupAddition$Builder instance using the provided configuration. The function takes the CfnUserToGroupAddition$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `groupName` | java.lang.String | [[cdk.support/lookup-entry]] | `:group-name` | | `users` | java.util.List | [[cdk.support/lookup-entry]] | `:users` |
(build-cfn-user-to-group-addition-props-builder builder id config)
The build-cfn-user-to-group-addition-props-builder function updates a CfnUserToGroupAdditionProps$Builder instance using the provided configuration. The function takes the CfnUserToGroupAdditionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
groupName | java.lang.String | cdk.support/lookup-entry | :group-name |
users | java.util.List | cdk.support/lookup-entry | :users |
The build-cfn-user-to-group-addition-props-builder function updates a CfnUserToGroupAdditionProps$Builder instance using the provided configuration. The function takes the CfnUserToGroupAdditionProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `groupName` | java.lang.String | [[cdk.support/lookup-entry]] | `:group-name` | | `users` | java.util.List | [[cdk.support/lookup-entry]] | `:users` |
(build-cfn-virtual-mfa-device-builder builder id config)
The build-cfn-virtual-mfa-device-builder function updates a CfnVirtualMFADevice$Builder instance using the provided configuration. The function takes the CfnVirtualMFADevice$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
path | java.lang.String | cdk.support/lookup-entry | :path |
tags | java.util.List | cdk.support/lookup-entry | :tags |
users | java.util.List | cdk.support/lookup-entry | :users |
virtualMfaDeviceName | java.lang.String | cdk.support/lookup-entry | :virtual-mfa-device-name |
The build-cfn-virtual-mfa-device-builder function updates a CfnVirtualMFADevice$Builder instance using the provided configuration. The function takes the CfnVirtualMFADevice$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` | | `users` | java.util.List | [[cdk.support/lookup-entry]] | `:users` | | `virtualMfaDeviceName` | java.lang.String | [[cdk.support/lookup-entry]] | `:virtual-mfa-device-name` |
(build-cfn-virtual-mfa-device-props-builder builder id config)
The build-cfn-virtual-mfa-device-props-builder function updates a CfnVirtualMFADeviceProps$Builder instance using the provided configuration. The function takes the CfnVirtualMFADeviceProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
path | java.lang.String | cdk.support/lookup-entry | :path |
tags | java.util.List | cdk.support/lookup-entry | :tags |
users | java.util.List | cdk.support/lookup-entry | :users |
virtualMfaDeviceName | java.lang.String | cdk.support/lookup-entry | :virtual-mfa-device-name |
The build-cfn-virtual-mfa-device-props-builder function updates a CfnVirtualMFADeviceProps$Builder instance using the provided configuration. The function takes the CfnVirtualMFADeviceProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `tags` | java.util.List | [[cdk.support/lookup-entry]] | `:tags` | | `users` | java.util.List | [[cdk.support/lookup-entry]] | `:users` | | `virtualMfaDeviceName` | java.lang.String | [[cdk.support/lookup-entry]] | `:virtual-mfa-device-name` |
(build-common-grant-options-builder builder id config)
The build-common-grant-options-builder function updates a CommonGrantOptions$Builder instance using the provided configuration. The function takes the CommonGrantOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actions | java.util.List | cdk.support/lookup-entry | :actions |
conditions | java.util.Map | cdk.support/lookup-entry | :conditions |
grantee | software.amazon.awscdk.services.iam.IGrantable | cdk.support/lookup-entry | :grantee |
resourceArns | java.util.List | cdk.support/lookup-entry | :resource-arns |
The build-common-grant-options-builder function updates a CommonGrantOptions$Builder instance using the provided configuration. The function takes the CommonGrantOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actions` | java.util.List | [[cdk.support/lookup-entry]] | `:actions` | | `conditions` | java.util.Map | [[cdk.support/lookup-entry]] | `:conditions` | | `grantee` | software.amazon.awscdk.services.iam.IGrantable | [[cdk.support/lookup-entry]] | `:grantee` | | `resourceArns` | java.util.List | [[cdk.support/lookup-entry]] | `:resource-arns` |
(build-customize-roles-options-builder builder id config)
The build-customize-roles-options-builder function updates a CustomizeRolesOptions$Builder instance using the provided configuration. The function takes the CustomizeRolesOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
preventSynthesis | java.lang.Boolean | cdk.support/lookup-entry | :prevent-synthesis |
usePrecreatedRoles | java.util.Map | cdk.support/lookup-entry | :use-precreated-roles |
The build-customize-roles-options-builder function updates a CustomizeRolesOptions$Builder instance using the provided configuration. The function takes the CustomizeRolesOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `preventSynthesis` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:prevent-synthesis` | | `usePrecreatedRoles` | java.util.Map | [[cdk.support/lookup-entry]] | `:use-precreated-roles` |
(build-from-role-arn-options-builder builder id config)
The build-from-role-arn-options-builder function updates a FromRoleArnOptions$Builder instance using the provided configuration. The function takes the FromRoleArnOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
addGrantsToResources | java.lang.Boolean | cdk.support/lookup-entry | :add-grants-to-resources |
defaultPolicyName | java.lang.String | cdk.support/lookup-entry | :default-policy-name |
mutable | java.lang.Boolean | cdk.support/lookup-entry | :mutable |
The build-from-role-arn-options-builder function updates a FromRoleArnOptions$Builder instance using the provided configuration. The function takes the FromRoleArnOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `addGrantsToResources` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:add-grants-to-resources` | | `defaultPolicyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:default-policy-name` | | `mutable` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:mutable` |
(build-from-role-name-options-builder builder id config)
The build-from-role-name-options-builder function updates a FromRoleNameOptions$Builder instance using the provided configuration. The function takes the FromRoleNameOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
addGrantsToResources | java.lang.Boolean | cdk.support/lookup-entry | :add-grants-to-resources |
defaultPolicyName | java.lang.String | cdk.support/lookup-entry | :default-policy-name |
mutable | java.lang.Boolean | cdk.support/lookup-entry | :mutable |
The build-from-role-name-options-builder function updates a FromRoleNameOptions$Builder instance using the provided configuration. The function takes the FromRoleNameOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `addGrantsToResources` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:add-grants-to-resources` | | `defaultPolicyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:default-policy-name` | | `mutable` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:mutable` |
(build-grant-on-principal-and-resource-options-builder builder id config)
The build-grant-on-principal-and-resource-options-builder function updates a GrantOnPrincipalAndResourceOptions$Builder instance using the provided configuration. The function takes the GrantOnPrincipalAndResourceOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actions | java.util.List | cdk.support/lookup-entry | :actions |
conditions | java.util.Map | cdk.support/lookup-entry | :conditions |
grantee | software.amazon.awscdk.services.iam.IGrantable | cdk.support/lookup-entry | :grantee |
resource | software.amazon.awscdk.services.iam.IResourceWithPolicy | cdk.support/lookup-entry | :resource |
resourceArns | java.util.List | cdk.support/lookup-entry | :resource-arns |
resourcePolicyPrincipal | software.amazon.awscdk.services.iam.IPrincipal | cdk.support/lookup-entry | :resource-policy-principal |
resourceSelfArns | java.util.List | cdk.support/lookup-entry | :resource-self-arns |
The build-grant-on-principal-and-resource-options-builder function updates a GrantOnPrincipalAndResourceOptions$Builder instance using the provided configuration. The function takes the GrantOnPrincipalAndResourceOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actions` | java.util.List | [[cdk.support/lookup-entry]] | `:actions` | | `conditions` | java.util.Map | [[cdk.support/lookup-entry]] | `:conditions` | | `grantee` | software.amazon.awscdk.services.iam.IGrantable | [[cdk.support/lookup-entry]] | `:grantee` | | `resource` | software.amazon.awscdk.services.iam.IResourceWithPolicy | [[cdk.support/lookup-entry]] | `:resource` | | `resourceArns` | java.util.List | [[cdk.support/lookup-entry]] | `:resource-arns` | | `resourcePolicyPrincipal` | software.amazon.awscdk.services.iam.IPrincipal | [[cdk.support/lookup-entry]] | `:resource-policy-principal` | | `resourceSelfArns` | java.util.List | [[cdk.support/lookup-entry]] | `:resource-self-arns` |
(build-grant-on-principal-options-builder builder id config)
The build-grant-on-principal-options-builder function updates a GrantOnPrincipalOptions$Builder instance using the provided configuration. The function takes the GrantOnPrincipalOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actions | java.util.List | cdk.support/lookup-entry | :actions |
conditions | java.util.Map | cdk.support/lookup-entry | :conditions |
grantee | software.amazon.awscdk.services.iam.IGrantable | cdk.support/lookup-entry | :grantee |
resourceArns | java.util.List | cdk.support/lookup-entry | :resource-arns |
scope | software.constructs.IConstruct | cdk.support/lookup-entry | :scope |
The build-grant-on-principal-options-builder function updates a GrantOnPrincipalOptions$Builder instance using the provided configuration. The function takes the GrantOnPrincipalOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actions` | java.util.List | [[cdk.support/lookup-entry]] | `:actions` | | `conditions` | java.util.Map | [[cdk.support/lookup-entry]] | `:conditions` | | `grantee` | software.amazon.awscdk.services.iam.IGrantable | [[cdk.support/lookup-entry]] | `:grantee` | | `resourceArns` | java.util.List | [[cdk.support/lookup-entry]] | `:resource-arns` | | `scope` | software.constructs.IConstruct | [[cdk.support/lookup-entry]] | `:scope` |
(build-grant-with-resource-options-builder builder id config)
The build-grant-with-resource-options-builder function updates a GrantWithResourceOptions$Builder instance using the provided configuration. The function takes the GrantWithResourceOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actions | java.util.List | cdk.support/lookup-entry | :actions |
conditions | java.util.Map | cdk.support/lookup-entry | :conditions |
grantee | software.amazon.awscdk.services.iam.IGrantable | cdk.support/lookup-entry | :grantee |
resource | software.amazon.awscdk.services.iam.IResourceWithPolicy | cdk.support/lookup-entry | :resource |
resourceArns | java.util.List | cdk.support/lookup-entry | :resource-arns |
resourceSelfArns | java.util.List | cdk.support/lookup-entry | :resource-self-arns |
The build-grant-with-resource-options-builder function updates a GrantWithResourceOptions$Builder instance using the provided configuration. The function takes the GrantWithResourceOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actions` | java.util.List | [[cdk.support/lookup-entry]] | `:actions` | | `conditions` | java.util.Map | [[cdk.support/lookup-entry]] | `:conditions` | | `grantee` | software.amazon.awscdk.services.iam.IGrantable | [[cdk.support/lookup-entry]] | `:grantee` | | `resource` | software.amazon.awscdk.services.iam.IResourceWithPolicy | [[cdk.support/lookup-entry]] | `:resource` | | `resourceArns` | java.util.List | [[cdk.support/lookup-entry]] | `:resource-arns` | | `resourceSelfArns` | java.util.List | [[cdk.support/lookup-entry]] | `:resource-self-arns` |
(build-group-builder builder id config)
The build-group-builder function updates a Group$Builder instance using the provided configuration. The function takes the Group$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
groupName | java.lang.String | cdk.support/lookup-entry | :group-name |
managedPolicies | java.util.List | cdk.support/lookup-entry | :managed-policies |
path | java.lang.String | cdk.support/lookup-entry | :path |
The build-group-builder function updates a Group$Builder instance using the provided configuration. The function takes the Group$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `groupName` | java.lang.String | [[cdk.support/lookup-entry]] | `:group-name` | | `managedPolicies` | java.util.List | [[cdk.support/lookup-entry]] | `:managed-policies` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` |
(build-group-props-builder builder id config)
The build-group-props-builder function updates a GroupProps$Builder instance using the provided configuration. The function takes the GroupProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
groupName | java.lang.String | cdk.support/lookup-entry | :group-name |
managedPolicies | java.util.List | cdk.support/lookup-entry | :managed-policies |
path | java.lang.String | cdk.support/lookup-entry | :path |
The build-group-props-builder function updates a GroupProps$Builder instance using the provided configuration. The function takes the GroupProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `groupName` | java.lang.String | [[cdk.support/lookup-entry]] | `:group-name` | | `managedPolicies` | java.util.List | [[cdk.support/lookup-entry]] | `:managed-policies` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` |
(build-instance-profile-attributes-builder builder id config)
The build-instance-profile-attributes-builder function updates a InstanceProfileAttributes$Builder instance using the provided configuration. The function takes the InstanceProfileAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
instanceProfileArn | java.lang.String | cdk.support/lookup-entry | :instance-profile-arn |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
The build-instance-profile-attributes-builder function updates a InstanceProfileAttributes$Builder instance using the provided configuration. The function takes the InstanceProfileAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `instanceProfileArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:instance-profile-arn` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` |
(build-instance-profile-builder builder id config)
The build-instance-profile-builder function updates a InstanceProfile$Builder instance using the provided configuration. The function takes the InstanceProfile$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
instanceProfileName | java.lang.String | cdk.support/lookup-entry | :instance-profile-name |
path | java.lang.String | cdk.support/lookup-entry | :path |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
The build-instance-profile-builder function updates a InstanceProfile$Builder instance using the provided configuration. The function takes the InstanceProfile$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `instanceProfileName` | java.lang.String | [[cdk.support/lookup-entry]] | `:instance-profile-name` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` |
(build-instance-profile-props-builder builder id config)
The build-instance-profile-props-builder function updates a InstanceProfileProps$Builder instance using the provided configuration. The function takes the InstanceProfileProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
instanceProfileName | java.lang.String | cdk.support/lookup-entry | :instance-profile-name |
path | java.lang.String | cdk.support/lookup-entry | :path |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
The build-instance-profile-props-builder function updates a InstanceProfileProps$Builder instance using the provided configuration. The function takes the InstanceProfileProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `instanceProfileName` | java.lang.String | [[cdk.support/lookup-entry]] | `:instance-profile-name` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` |
(build-lazy-role-builder builder id config)
The build-lazy-role-builder function updates a LazyRole$Builder instance using the provided configuration. The function takes the LazyRole$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
assumedBy | software.amazon.awscdk.services.iam.IPrincipal | cdk.support/lookup-entry | :assumed-by |
description | java.lang.String | cdk.support/lookup-entry | :description |
externalIds | java.util.List | cdk.support/lookup-entry | :external-ids |
inlinePolicies | java.util.Map | cdk.support/lookup-entry | :inline-policies |
managedPolicies | java.util.List | cdk.support/lookup-entry | :managed-policies |
maxSessionDuration | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-session-duration |
path | java.lang.String | cdk.support/lookup-entry | :path |
permissionsBoundary | software.amazon.awscdk.services.iam.IManagedPolicy | cdk.support/lookup-entry | :permissions-boundary |
roleName | java.lang.String | cdk.support/lookup-entry | :role-name |
The build-lazy-role-builder function updates a LazyRole$Builder instance using the provided configuration. The function takes the LazyRole$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `assumedBy` | software.amazon.awscdk.services.iam.IPrincipal | [[cdk.support/lookup-entry]] | `:assumed-by` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `externalIds` | java.util.List | [[cdk.support/lookup-entry]] | `:external-ids` | | `inlinePolicies` | java.util.Map | [[cdk.support/lookup-entry]] | `:inline-policies` | | `managedPolicies` | java.util.List | [[cdk.support/lookup-entry]] | `:managed-policies` | | `maxSessionDuration` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-session-duration` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `permissionsBoundary` | software.amazon.awscdk.services.iam.IManagedPolicy | [[cdk.support/lookup-entry]] | `:permissions-boundary` | | `roleName` | java.lang.String | [[cdk.support/lookup-entry]] | `:role-name` |
(build-lazy-role-props-builder builder id config)
The build-lazy-role-props-builder function updates a LazyRoleProps$Builder instance using the provided configuration. The function takes the LazyRoleProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
assumedBy | software.amazon.awscdk.services.iam.IPrincipal | cdk.support/lookup-entry | :assumed-by |
description | java.lang.String | cdk.support/lookup-entry | :description |
externalIds | java.util.List | cdk.support/lookup-entry | :external-ids |
inlinePolicies | java.util.Map | cdk.support/lookup-entry | :inline-policies |
managedPolicies | java.util.List | cdk.support/lookup-entry | :managed-policies |
maxSessionDuration | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-session-duration |
path | java.lang.String | cdk.support/lookup-entry | :path |
permissionsBoundary | software.amazon.awscdk.services.iam.IManagedPolicy | cdk.support/lookup-entry | :permissions-boundary |
roleName | java.lang.String | cdk.support/lookup-entry | :role-name |
The build-lazy-role-props-builder function updates a LazyRoleProps$Builder instance using the provided configuration. The function takes the LazyRoleProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `assumedBy` | software.amazon.awscdk.services.iam.IPrincipal | [[cdk.support/lookup-entry]] | `:assumed-by` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `externalIds` | java.util.List | [[cdk.support/lookup-entry]] | `:external-ids` | | `inlinePolicies` | java.util.Map | [[cdk.support/lookup-entry]] | `:inline-policies` | | `managedPolicies` | java.util.List | [[cdk.support/lookup-entry]] | `:managed-policies` | | `maxSessionDuration` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-session-duration` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `permissionsBoundary` | software.amazon.awscdk.services.iam.IManagedPolicy | [[cdk.support/lookup-entry]] | `:permissions-boundary` | | `roleName` | java.lang.String | [[cdk.support/lookup-entry]] | `:role-name` |
(build-managed-policy-builder builder id config)
The build-managed-policy-builder function updates a ManagedPolicy$Builder instance using the provided configuration. The function takes the ManagedPolicy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
description | java.lang.String | cdk.support/lookup-entry | :description |
document | software.amazon.awscdk.services.iam.PolicyDocument | cdk.support/lookup-entry | :document |
groups | java.util.List | cdk.support/lookup-entry | :groups |
managedPolicyName | java.lang.String | cdk.support/lookup-entry | :managed-policy-name |
path | java.lang.String | cdk.support/lookup-entry | :path |
roles | java.util.List | cdk.support/lookup-entry | :roles |
statements | java.util.List | cdk.support/lookup-entry | :statements |
users | java.util.List | cdk.support/lookup-entry | :users |
The build-managed-policy-builder function updates a ManagedPolicy$Builder instance using the provided configuration. The function takes the ManagedPolicy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `document` | software.amazon.awscdk.services.iam.PolicyDocument | [[cdk.support/lookup-entry]] | `:document` | | `groups` | java.util.List | [[cdk.support/lookup-entry]] | `:groups` | | `managedPolicyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:managed-policy-name` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `roles` | java.util.List | [[cdk.support/lookup-entry]] | `:roles` | | `statements` | java.util.List | [[cdk.support/lookup-entry]] | `:statements` | | `users` | java.util.List | [[cdk.support/lookup-entry]] | `:users` |
(build-managed-policy-props-builder builder id config)
The build-managed-policy-props-builder function updates a ManagedPolicyProps$Builder instance using the provided configuration. The function takes the ManagedPolicyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
description | java.lang.String | cdk.support/lookup-entry | :description |
document | software.amazon.awscdk.services.iam.PolicyDocument | cdk.support/lookup-entry | :document |
groups | java.util.List | cdk.support/lookup-entry | :groups |
managedPolicyName | java.lang.String | cdk.support/lookup-entry | :managed-policy-name |
path | java.lang.String | cdk.support/lookup-entry | :path |
roles | java.util.List | cdk.support/lookup-entry | :roles |
statements | java.util.List | cdk.support/lookup-entry | :statements |
users | java.util.List | cdk.support/lookup-entry | :users |
The build-managed-policy-props-builder function updates a ManagedPolicyProps$Builder instance using the provided configuration. The function takes the ManagedPolicyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `document` | software.amazon.awscdk.services.iam.PolicyDocument | [[cdk.support/lookup-entry]] | `:document` | | `groups` | java.util.List | [[cdk.support/lookup-entry]] | `:groups` | | `managedPolicyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:managed-policy-name` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `roles` | java.util.List | [[cdk.support/lookup-entry]] | `:roles` | | `statements` | java.util.List | [[cdk.support/lookup-entry]] | `:statements` | | `users` | java.util.List | [[cdk.support/lookup-entry]] | `:users` |
(build-open-id-connect-provider-builder builder id config)
The build-open-id-connect-provider-builder function updates a OpenIdConnectProvider$Builder instance using the provided configuration. The function takes the OpenIdConnectProvider$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
clientIds | java.util.List | cdk.support/lookup-entry | :client-ids |
thumbprints | java.util.List | cdk.support/lookup-entry | :thumbprints |
url | java.lang.String | cdk.support/lookup-entry | :url |
The build-open-id-connect-provider-builder function updates a OpenIdConnectProvider$Builder instance using the provided configuration. The function takes the OpenIdConnectProvider$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `clientIds` | java.util.List | [[cdk.support/lookup-entry]] | `:client-ids` | | `thumbprints` | java.util.List | [[cdk.support/lookup-entry]] | `:thumbprints` | | `url` | java.lang.String | [[cdk.support/lookup-entry]] | `:url` |
(build-open-id-connect-provider-props-builder builder id config)
The build-open-id-connect-provider-props-builder function updates a OpenIdConnectProviderProps$Builder instance using the provided configuration. The function takes the OpenIdConnectProviderProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
clientIds | java.util.List | cdk.support/lookup-entry | :client-ids |
thumbprints | java.util.List | cdk.support/lookup-entry | :thumbprints |
url | java.lang.String | cdk.support/lookup-entry | :url |
The build-open-id-connect-provider-props-builder function updates a OpenIdConnectProviderProps$Builder instance using the provided configuration. The function takes the OpenIdConnectProviderProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `clientIds` | java.util.List | [[cdk.support/lookup-entry]] | `:client-ids` | | `thumbprints` | java.util.List | [[cdk.support/lookup-entry]] | `:thumbprints` | | `url` | java.lang.String | [[cdk.support/lookup-entry]] | `:url` |
(build-policy-builder builder id config)
The build-policy-builder function updates a Policy$Builder instance using the provided configuration. The function takes the Policy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
document | software.amazon.awscdk.services.iam.PolicyDocument | cdk.support/lookup-entry | :document |
force | java.lang.Boolean | cdk.support/lookup-entry | :force |
groups | java.util.List | cdk.support/lookup-entry | :groups |
policyName | java.lang.String | cdk.support/lookup-entry | :policy-name |
roles | java.util.List | cdk.support/lookup-entry | :roles |
statements | java.util.List | cdk.support/lookup-entry | :statements |
users | java.util.List | cdk.support/lookup-entry | :users |
The build-policy-builder function updates a Policy$Builder instance using the provided configuration. The function takes the Policy$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `document` | software.amazon.awscdk.services.iam.PolicyDocument | [[cdk.support/lookup-entry]] | `:document` | | `force` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:force` | | `groups` | java.util.List | [[cdk.support/lookup-entry]] | `:groups` | | `policyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:policy-name` | | `roles` | java.util.List | [[cdk.support/lookup-entry]] | `:roles` | | `statements` | java.util.List | [[cdk.support/lookup-entry]] | `:statements` | | `users` | java.util.List | [[cdk.support/lookup-entry]] | `:users` |
(build-policy-document-builder builder id config)
The build-policy-document-builder function updates a PolicyDocument$Builder instance using the provided configuration. The function takes the PolicyDocument$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
assignSids | java.lang.Boolean | cdk.support/lookup-entry | :assign-sids |
minimize | java.lang.Boolean | cdk.support/lookup-entry | :minimize |
statements | java.util.List | cdk.support/lookup-entry | :statements |
The build-policy-document-builder function updates a PolicyDocument$Builder instance using the provided configuration. The function takes the PolicyDocument$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `assignSids` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:assign-sids` | | `minimize` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:minimize` | | `statements` | java.util.List | [[cdk.support/lookup-entry]] | `:statements` |
(build-policy-document-props-builder builder id config)
The build-policy-document-props-builder function updates a PolicyDocumentProps$Builder instance using the provided configuration. The function takes the PolicyDocumentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
assignSids | java.lang.Boolean | cdk.support/lookup-entry | :assign-sids |
minimize | java.lang.Boolean | cdk.support/lookup-entry | :minimize |
statements | java.util.List | cdk.support/lookup-entry | :statements |
The build-policy-document-props-builder function updates a PolicyDocumentProps$Builder instance using the provided configuration. The function takes the PolicyDocumentProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `assignSids` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:assign-sids` | | `minimize` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:minimize` | | `statements` | java.util.List | [[cdk.support/lookup-entry]] | `:statements` |
(build-policy-props-builder builder id config)
The build-policy-props-builder function updates a PolicyProps$Builder instance using the provided configuration. The function takes the PolicyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
document | software.amazon.awscdk.services.iam.PolicyDocument | cdk.support/lookup-entry | :document |
force | java.lang.Boolean | cdk.support/lookup-entry | :force |
groups | java.util.List | cdk.support/lookup-entry | :groups |
policyName | java.lang.String | cdk.support/lookup-entry | :policy-name |
roles | java.util.List | cdk.support/lookup-entry | :roles |
statements | java.util.List | cdk.support/lookup-entry | :statements |
users | java.util.List | cdk.support/lookup-entry | :users |
The build-policy-props-builder function updates a PolicyProps$Builder instance using the provided configuration. The function takes the PolicyProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `document` | software.amazon.awscdk.services.iam.PolicyDocument | [[cdk.support/lookup-entry]] | `:document` | | `force` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:force` | | `groups` | java.util.List | [[cdk.support/lookup-entry]] | `:groups` | | `policyName` | java.lang.String | [[cdk.support/lookup-entry]] | `:policy-name` | | `roles` | java.util.List | [[cdk.support/lookup-entry]] | `:roles` | | `statements` | java.util.List | [[cdk.support/lookup-entry]] | `:statements` | | `users` | java.util.List | [[cdk.support/lookup-entry]] | `:users` |
(build-policy-statement-builder builder id config)
The build-policy-statement-builder function updates a PolicyStatement$Builder instance using the provided configuration. The function takes the PolicyStatement$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actions | java.util.List | cdk.support/lookup-entry | :actions |
conditions | java.util.Map | cdk.support/lookup-entry | :conditions |
effect | software.amazon.awscdk.services.iam.Effect | cdk.api.services.iam/effect | :effect |
notActions | java.util.List | cdk.support/lookup-entry | :not-actions |
notPrincipals | java.util.List | cdk.support/lookup-entry | :not-principals |
notResources | java.util.List | cdk.support/lookup-entry | :not-resources |
principals | java.util.List | cdk.support/lookup-entry | :principals |
resources | java.util.List | cdk.support/lookup-entry | :resources |
sid | java.lang.String | cdk.support/lookup-entry | :sid |
The build-policy-statement-builder function updates a PolicyStatement$Builder instance using the provided configuration. The function takes the PolicyStatement$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actions` | java.util.List | [[cdk.support/lookup-entry]] | `:actions` | | `conditions` | java.util.Map | [[cdk.support/lookup-entry]] | `:conditions` | | `effect` | software.amazon.awscdk.services.iam.Effect | [[cdk.api.services.iam/effect]] | `:effect` | | `notActions` | java.util.List | [[cdk.support/lookup-entry]] | `:not-actions` | | `notPrincipals` | java.util.List | [[cdk.support/lookup-entry]] | `:not-principals` | | `notResources` | java.util.List | [[cdk.support/lookup-entry]] | `:not-resources` | | `principals` | java.util.List | [[cdk.support/lookup-entry]] | `:principals` | | `resources` | java.util.List | [[cdk.support/lookup-entry]] | `:resources` | | `sid` | java.lang.String | [[cdk.support/lookup-entry]] | `:sid` |
(build-policy-statement-props-builder builder id config)
The build-policy-statement-props-builder function updates a PolicyStatementProps$Builder instance using the provided configuration. The function takes the PolicyStatementProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
actions | java.util.List | cdk.support/lookup-entry | :actions |
conditions | java.util.Map | cdk.support/lookup-entry | :conditions |
effect | software.amazon.awscdk.services.iam.Effect | cdk.api.services.iam/effect | :effect |
notActions | java.util.List | cdk.support/lookup-entry | :not-actions |
notPrincipals | java.util.List | cdk.support/lookup-entry | :not-principals |
notResources | java.util.List | cdk.support/lookup-entry | :not-resources |
principals | java.util.List | cdk.support/lookup-entry | :principals |
resources | java.util.List | cdk.support/lookup-entry | :resources |
sid | java.lang.String | cdk.support/lookup-entry | :sid |
The build-policy-statement-props-builder function updates a PolicyStatementProps$Builder instance using the provided configuration. The function takes the PolicyStatementProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `actions` | java.util.List | [[cdk.support/lookup-entry]] | `:actions` | | `conditions` | java.util.Map | [[cdk.support/lookup-entry]] | `:conditions` | | `effect` | software.amazon.awscdk.services.iam.Effect | [[cdk.api.services.iam/effect]] | `:effect` | | `notActions` | java.util.List | [[cdk.support/lookup-entry]] | `:not-actions` | | `notPrincipals` | java.util.List | [[cdk.support/lookup-entry]] | `:not-principals` | | `notResources` | java.util.List | [[cdk.support/lookup-entry]] | `:not-resources` | | `principals` | java.util.List | [[cdk.support/lookup-entry]] | `:principals` | | `resources` | java.util.List | [[cdk.support/lookup-entry]] | `:resources` | | `sid` | java.lang.String | [[cdk.support/lookup-entry]] | `:sid` |
(build-role-builder builder id config)
The build-role-builder function updates a Role$Builder instance using the provided configuration. The function takes the Role$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
assumedBy | software.amazon.awscdk.services.iam.IPrincipal | cdk.support/lookup-entry | :assumed-by |
description | java.lang.String | cdk.support/lookup-entry | :description |
externalIds | java.util.List | cdk.support/lookup-entry | :external-ids |
inlinePolicies | java.util.Map | cdk.support/lookup-entry | :inline-policies |
managedPolicies | java.util.List | cdk.support/lookup-entry | :managed-policies |
maxSessionDuration | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-session-duration |
path | java.lang.String | cdk.support/lookup-entry | :path |
permissionsBoundary | software.amazon.awscdk.services.iam.IManagedPolicy | cdk.support/lookup-entry | :permissions-boundary |
roleName | java.lang.String | cdk.support/lookup-entry | :role-name |
The build-role-builder function updates a Role$Builder instance using the provided configuration. The function takes the Role$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `assumedBy` | software.amazon.awscdk.services.iam.IPrincipal | [[cdk.support/lookup-entry]] | `:assumed-by` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `externalIds` | java.util.List | [[cdk.support/lookup-entry]] | `:external-ids` | | `inlinePolicies` | java.util.Map | [[cdk.support/lookup-entry]] | `:inline-policies` | | `managedPolicies` | java.util.List | [[cdk.support/lookup-entry]] | `:managed-policies` | | `maxSessionDuration` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-session-duration` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `permissionsBoundary` | software.amazon.awscdk.services.iam.IManagedPolicy | [[cdk.support/lookup-entry]] | `:permissions-boundary` | | `roleName` | java.lang.String | [[cdk.support/lookup-entry]] | `:role-name` |
(build-role-props-builder builder id config)
The build-role-props-builder function updates a RoleProps$Builder instance using the provided configuration. The function takes the RoleProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
assumedBy | software.amazon.awscdk.services.iam.IPrincipal | cdk.support/lookup-entry | :assumed-by |
description | java.lang.String | cdk.support/lookup-entry | :description |
externalIds | java.util.List | cdk.support/lookup-entry | :external-ids |
inlinePolicies | java.util.Map | cdk.support/lookup-entry | :inline-policies |
managedPolicies | java.util.List | cdk.support/lookup-entry | :managed-policies |
maxSessionDuration | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :max-session-duration |
path | java.lang.String | cdk.support/lookup-entry | :path |
permissionsBoundary | software.amazon.awscdk.services.iam.IManagedPolicy | cdk.support/lookup-entry | :permissions-boundary |
roleName | java.lang.String | cdk.support/lookup-entry | :role-name |
The build-role-props-builder function updates a RoleProps$Builder instance using the provided configuration. The function takes the RoleProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `assumedBy` | software.amazon.awscdk.services.iam.IPrincipal | [[cdk.support/lookup-entry]] | `:assumed-by` | | `description` | java.lang.String | [[cdk.support/lookup-entry]] | `:description` | | `externalIds` | java.util.List | [[cdk.support/lookup-entry]] | `:external-ids` | | `inlinePolicies` | java.util.Map | [[cdk.support/lookup-entry]] | `:inline-policies` | | `managedPolicies` | java.util.List | [[cdk.support/lookup-entry]] | `:managed-policies` | | `maxSessionDuration` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:max-session-duration` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `permissionsBoundary` | software.amazon.awscdk.services.iam.IManagedPolicy | [[cdk.support/lookup-entry]] | `:permissions-boundary` | | `roleName` | java.lang.String | [[cdk.support/lookup-entry]] | `:role-name` |
(build-saml-provider-builder builder id config)
The build-saml-provider-builder function updates a SamlProvider$Builder instance using the provided configuration. The function takes the SamlProvider$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
metadataDocument | software.amazon.awscdk.services.iam.SamlMetadataDocument | cdk.support/lookup-entry | :metadata-document |
name | java.lang.String | cdk.support/lookup-entry | :name |
The build-saml-provider-builder function updates a SamlProvider$Builder instance using the provided configuration. The function takes the SamlProvider$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `metadataDocument` | software.amazon.awscdk.services.iam.SamlMetadataDocument | [[cdk.support/lookup-entry]] | `:metadata-document` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
(build-saml-provider-props-builder builder id config)
The build-saml-provider-props-builder function updates a SamlProviderProps$Builder instance using the provided configuration. The function takes the SamlProviderProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
metadataDocument | software.amazon.awscdk.services.iam.SamlMetadataDocument | cdk.support/lookup-entry | :metadata-document |
name | java.lang.String | cdk.support/lookup-entry | :name |
The build-saml-provider-props-builder function updates a SamlProviderProps$Builder instance using the provided configuration. The function takes the SamlProviderProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `metadataDocument` | software.amazon.awscdk.services.iam.SamlMetadataDocument | [[cdk.support/lookup-entry]] | `:metadata-document` | | `name` | java.lang.String | [[cdk.support/lookup-entry]] | `:name` |
(build-service-principal-builder builder id config)
The build-service-principal-builder function updates a ServicePrincipal$Builder instance using the provided configuration. The function takes the ServicePrincipal$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
conditions | java.util.Map | cdk.support/lookup-entry | :conditions |
region | java.lang.String | cdk.support/lookup-entry | :region |
The build-service-principal-builder function updates a ServicePrincipal$Builder instance using the provided configuration. The function takes the ServicePrincipal$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `conditions` | java.util.Map | [[cdk.support/lookup-entry]] | `:conditions` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` |
(build-service-principal-opts-builder builder id config)
The build-service-principal-opts-builder function updates a ServicePrincipalOpts$Builder instance using the provided configuration. The function takes the ServicePrincipalOpts$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
conditions | java.util.Map | cdk.support/lookup-entry | :conditions |
region | java.lang.String | cdk.support/lookup-entry | :region |
The build-service-principal-opts-builder function updates a ServicePrincipalOpts$Builder instance using the provided configuration. The function takes the ServicePrincipalOpts$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `conditions` | java.util.Map | [[cdk.support/lookup-entry]] | `:conditions` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` |
(build-unknown-principal-builder builder id config)
The build-unknown-principal-builder function updates a UnknownPrincipal$Builder instance using the provided configuration. The function takes the UnknownPrincipal$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
resource | software.constructs.IConstruct | cdk.support/lookup-entry | :resource |
The build-unknown-principal-builder function updates a UnknownPrincipal$Builder instance using the provided configuration. The function takes the UnknownPrincipal$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `resource` | software.constructs.IConstruct | [[cdk.support/lookup-entry]] | `:resource` |
(build-unknown-principal-props-builder builder id config)
The build-unknown-principal-props-builder function updates a UnknownPrincipalProps$Builder instance using the provided configuration. The function takes the UnknownPrincipalProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
resource | software.constructs.IConstruct | cdk.support/lookup-entry | :resource |
The build-unknown-principal-props-builder function updates a UnknownPrincipalProps$Builder instance using the provided configuration. The function takes the UnknownPrincipalProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `resource` | software.constructs.IConstruct | [[cdk.support/lookup-entry]] | `:resource` |
(build-user-attributes-builder builder id config)
The build-user-attributes-builder function updates a UserAttributes$Builder instance using the provided configuration. The function takes the UserAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
userArn | java.lang.String | cdk.support/lookup-entry | :user-arn |
The build-user-attributes-builder function updates a UserAttributes$Builder instance using the provided configuration. The function takes the UserAttributes$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `userArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-arn` |
(build-user-builder builder id config)
The build-user-builder function updates a User$Builder instance using the provided configuration. The function takes the User$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
groups | java.util.List | cdk.support/lookup-entry | :groups |
managedPolicies | java.util.List | cdk.support/lookup-entry | :managed-policies |
password | software.amazon.awscdk.SecretValue | cdk.support/lookup-entry | :password |
passwordResetRequired | java.lang.Boolean | cdk.support/lookup-entry | :password-reset-required |
path | java.lang.String | cdk.support/lookup-entry | :path |
permissionsBoundary | software.amazon.awscdk.services.iam.IManagedPolicy | cdk.support/lookup-entry | :permissions-boundary |
userName | java.lang.String | cdk.support/lookup-entry | :user-name |
The build-user-builder function updates a User$Builder instance using the provided configuration. The function takes the User$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `groups` | java.util.List | [[cdk.support/lookup-entry]] | `:groups` | | `managedPolicies` | java.util.List | [[cdk.support/lookup-entry]] | `:managed-policies` | | `password` | software.amazon.awscdk.SecretValue | [[cdk.support/lookup-entry]] | `:password` | | `passwordResetRequired` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:password-reset-required` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `permissionsBoundary` | software.amazon.awscdk.services.iam.IManagedPolicy | [[cdk.support/lookup-entry]] | `:permissions-boundary` | | `userName` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-name` |
(build-user-props-builder builder id config)
The build-user-props-builder function updates a UserProps$Builder instance using the provided configuration. The function takes the UserProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
groups | java.util.List | cdk.support/lookup-entry | :groups |
managedPolicies | java.util.List | cdk.support/lookup-entry | :managed-policies |
password | software.amazon.awscdk.SecretValue | cdk.support/lookup-entry | :password |
passwordResetRequired | java.lang.Boolean | cdk.support/lookup-entry | :password-reset-required |
path | java.lang.String | cdk.support/lookup-entry | :path |
permissionsBoundary | software.amazon.awscdk.services.iam.IManagedPolicy | cdk.support/lookup-entry | :permissions-boundary |
userName | java.lang.String | cdk.support/lookup-entry | :user-name |
The build-user-props-builder function updates a UserProps$Builder instance using the provided configuration. The function takes the UserProps$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `groups` | java.util.List | [[cdk.support/lookup-entry]] | `:groups` | | `managedPolicies` | java.util.List | [[cdk.support/lookup-entry]] | `:managed-policies` | | `password` | software.amazon.awscdk.SecretValue | [[cdk.support/lookup-entry]] | `:password` | | `passwordResetRequired` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:password-reset-required` | | `path` | java.lang.String | [[cdk.support/lookup-entry]] | `:path` | | `permissionsBoundary` | software.amazon.awscdk.services.iam.IManagedPolicy | [[cdk.support/lookup-entry]] | `:permissions-boundary` | | `userName` | java.lang.String | [[cdk.support/lookup-entry]] | `:user-name` |
(build-without-policy-updates-options-builder builder id config)
The build-without-policy-updates-options-builder function updates a WithoutPolicyUpdatesOptions$Builder instance using the provided configuration. The function takes the WithoutPolicyUpdatesOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself.
Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value:
Field | DataType | Lookup Function | Data Key |
---|---|---|---|
addGrantsToResources | java.lang.Boolean | cdk.support/lookup-entry | :add-grants-to-resources |
The build-without-policy-updates-options-builder function updates a WithoutPolicyUpdatesOptions$Builder instance using the provided configuration. The function takes the WithoutPolicyUpdatesOptions$Builder instance, an optional namespace to use when looking up a value in the configuration, and the configuration itself. Fields on the builder are populated by looking up their respective data key, where the namespaced value takes precendence over the non-namespaced value: | Field | DataType | Lookup Function | Data Key | |---|---|---|---| | `addGrantsToResources` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:add-grants-to-resources` |
(cfn-access-key-builder scope id config)
Creates a CfnAccessKey$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnAccessKey$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-access-key-props-builder id config)
Creates a CfnAccessKeyProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnAccessKeyProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-group-builder scope id config)
Creates a CfnGroup$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnGroup$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-group-policy-builder scope id config)
Creates a CfnGroupPolicy$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnGroupPolicy$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-group-policy-property-builder id config)
Creates a CfnGroup$PolicyProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnGroup$PolicyProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-group-policy-props-builder id config)
Creates a CfnGroupPolicyProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnGroupPolicyProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-group-props-builder id config)
Creates a CfnGroupProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnGroupProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-instance-profile-builder scope id config)
Creates a CfnInstanceProfile$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnInstanceProfile$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-instance-profile-props-builder id config)
Creates a CfnInstanceProfileProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnInstanceProfileProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-managed-policy-builder scope id config)
Creates a CfnManagedPolicy$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnManagedPolicy$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-managed-policy-props-builder id config)
Creates a CfnManagedPolicyProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnManagedPolicyProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-oidc-provider-builder scope id config)
Creates a CfnOIDCProvider$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnOIDCProvider$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-oidc-provider-props-builder id config)
Creates a CfnOIDCProviderProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnOIDCProviderProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-policy-builder scope id config)
Creates a CfnPolicy$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnPolicy$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-policy-props-builder id config)
Creates a CfnPolicyProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnPolicyProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-role-builder scope id config)
Creates a CfnRole$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnRole$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-role-policy-builder scope id config)
Creates a CfnRolePolicy$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnRolePolicy$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-role-policy-property-builder id config)
Creates a CfnRole$PolicyProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnRole$PolicyProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-role-policy-props-builder id config)
Creates a CfnRolePolicyProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnRolePolicyProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-role-props-builder id config)
Creates a CfnRoleProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnRoleProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-saml-provider-builder scope id config)
Creates a CfnSAMLProvider$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnSAMLProvider$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-saml-provider-props-builder id config)
Creates a CfnSAMLProviderProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnSAMLProviderProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-server-certificate-builder scope id config)
Creates a CfnServerCertificate$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnServerCertificate$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-server-certificate-props-builder id config)
Creates a CfnServerCertificateProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnServerCertificateProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-service-linked-role-builder scope id config)
Creates a CfnServiceLinkedRole$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnServiceLinkedRole$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-service-linked-role-props-builder id config)
Creates a CfnServiceLinkedRoleProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnServiceLinkedRoleProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-user-builder scope id config)
Creates a CfnUser$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnUser$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-user-login-profile-property-builder id config)
Creates a CfnUser$LoginProfileProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnUser$LoginProfileProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-user-policy-builder scope id config)
Creates a CfnUserPolicy$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnUserPolicy$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-user-policy-property-builder id config)
Creates a CfnUser$PolicyProperty$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnUser$PolicyProperty$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-user-policy-props-builder id config)
Creates a CfnUserPolicyProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnUserPolicyProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-user-props-builder id config)
Creates a CfnUserProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnUserProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-user-to-group-addition-builder scope id config)
Creates a CfnUserToGroupAddition$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnUserToGroupAddition$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-user-to-group-addition-props-builder id config)
Creates a CfnUserToGroupAdditionProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnUserToGroupAdditionProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-virtual-mfa-device-builder scope id config)
Creates a CfnVirtualMFADevice$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `CfnVirtualMFADevice$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(cfn-virtual-mfa-device-props-builder id config)
Creates a CfnVirtualMFADeviceProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CfnVirtualMFADeviceProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(common-grant-options-builder id config)
Creates a CommonGrantOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CommonGrantOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(customize-roles-options-builder id config)
Creates a CustomizeRolesOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `CustomizeRolesOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(effect config id item-key)
The effect
function data interprets values in the provided config data into a
Effect
instance. This simplifies the use of keywords in place of actual enum values in
the configuration provided to builders. The value is found using the cdk.support/lookup-entry
function on the data with the provided namespace id and item-key. The found value is interpretted as follows:
Effect
- the value is returned.:allow
- Effect/ALLOW
is returned:deny
- Effect/DENY
is returnedIf a value is not found or matches the above criteria, nil is returned.
The `effect` function data interprets values in the provided config data into a `Effect` instance. This simplifies the use of keywords in place of actual enum values in the configuration provided to builders. The value is found using the `cdk.support/lookup-entry` function on the data with the provided namespace id and item-key. The found value is interpretted as follows: * instance of `Effect` - the value is returned. * is `:allow` - `Effect/ALLOW` is returned * is `:deny` - `Effect/DENY` is returned If a value is not found or matches the above criteria, nil is returned.
(from-role-arn-options-builder id config)
Creates a FromRoleArnOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `FromRoleArnOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(from-role-name-options-builder id config)
Creates a FromRoleNameOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `FromRoleNameOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(grant-on-principal-and-resource-options-builder id config)
Creates a GrantOnPrincipalAndResourceOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `GrantOnPrincipalAndResourceOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(grant-on-principal-options-builder id config)
Creates a GrantOnPrincipalOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `GrantOnPrincipalOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(grant-with-resource-options-builder id config)
Creates a GrantWithResourceOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `GrantWithResourceOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(group-builder scope id config)
Creates a Group$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `Group$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(group-props-builder id config)
Creates a GroupProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `GroupProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(instance-profile-attributes-builder id config)
Creates a InstanceProfileAttributes$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `InstanceProfileAttributes$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(instance-profile-builder scope id config)
Creates a InstanceProfile$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `InstanceProfile$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(instance-profile-props-builder id config)
Creates a InstanceProfileProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `InstanceProfileProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(lazy-role-builder scope id config)
Creates a LazyRole$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `LazyRole$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(lazy-role-props-builder id config)
Creates a LazyRoleProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `LazyRoleProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(managed-policy-builder scope id config)
Creates a ManagedPolicy$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `ManagedPolicy$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(managed-policy-props-builder id config)
Creates a ManagedPolicyProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `ManagedPolicyProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(open-id-connect-provider-builder scope id config)
Creates a OpenIdConnectProvider$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `OpenIdConnectProvider$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(open-id-connect-provider-props-builder id config)
Creates a OpenIdConnectProviderProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `OpenIdConnectProviderProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(policy-builder scope id config)
Creates a Policy$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `Policy$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(policy-document-builder id config)
Creates a PolicyDocument$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `PolicyDocument$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(policy-document-props-builder id config)
Creates a PolicyDocumentProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `PolicyDocumentProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(policy-props-builder id config)
Creates a PolicyProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `PolicyProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(policy-statement-builder id config)
Creates a PolicyStatement$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `PolicyStatement$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(policy-statement-props-builder id config)
Creates a PolicyStatementProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `PolicyStatementProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(role-builder scope id config)
Creates a Role$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `Role$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(role-props-builder id config)
Creates a RoleProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `RoleProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(saml-provider-builder scope id config)
Creates a SamlProvider$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `SamlProvider$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(saml-provider-props-builder id config)
Creates a SamlProviderProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `SamlProviderProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(service-principal-builder service id config)
Creates a ServicePrincipal$Builder
instance using provided forms, applies the data configuration, then builds it. Takes the following arguments:
Create Form: _[java.lang.String] | Argument | DataType | Description | |---|---|---| | service | java.lang.String | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
Creates a `ServicePrincipal$Builder` instance using provided forms, applies the data configuration, then builds it. Takes the following arguments: __Create Form:__ ____[java.lang.String]___ | Argument | DataType | Description | |---|---|---| | service | java.lang.String | | | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(service-principal-opts-builder id config)
Creates a ServicePrincipalOpts$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `ServicePrincipalOpts$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(unknown-principal-builder id config)
Creates a UnknownPrincipal$Builder
instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `UnknownPrincipal$Builder` instance using a no-argument create, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(unknown-principal-props-builder id config)
Creates a UnknownPrincipalProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `UnknownPrincipalProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(user-attributes-builder id config)
Creates a UserAttributes$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `UserAttributes$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(user-builder scope id config)
Creates a User$Builder
instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments:
| Argument | DataType | Description |
|---|---|---|
| scope | software.constructs.Construct | The parent scope construct of the object being built. |
| id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. |
| config | map | Data configuration |
Creates a `User$Builder` instance using a scope and ID, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | scope | software.constructs.Construct | The parent scope construct of the object being built. | | id | String or Keyword or Symbol | Value to use as both the ID of the object being build and the namespace when looking up configuration values. | | config | map | Data configuration |
(user-props-builder id config)
Creates a UserProps$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `UserProps$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
(without-policy-updates-options-builder id config)
Creates a WithoutPolicyUpdatesOptions$Builder
instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments:
Argument | DataType | Description |
---|---|---|
id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. |
config | map | Data configuration |
Creates a `WithoutPolicyUpdatesOptions$Builder` instance using a no-argument constructor, applies the data configuration, then builds it. Takes the following arguments: | Argument | DataType | Description | |---|---|---| | id | String or Keyword or Symbol | Value to use as namespace when looking up configuration values. | | config | map | Data configuration |
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close