Functions that represent AWS CDK enums and builders in the software.amazon.awscdk.customresources package.
Functions that represent AWS CDK enums and builders in the software.amazon.awscdk.customresources package.
(aws-custom-resource-builder scope id config)
Creates a AwsCustomResource$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 `AwsCustomResource$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 |
(aws-custom-resource-props-builder id config)
Creates a AwsCustomResourceProps$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 `AwsCustomResourceProps$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 |
(aws-sdk-call-builder id config)
Creates a AwsSdkCall$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 `AwsSdkCall$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-aws-custom-resource-builder builder id config)
The build-aws-custom-resource-builder function updates a AwsCustomResource$Builder instance using the provided configuration. The function takes the AwsCustomResource$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 |
---|---|---|---|
functionName | java.lang.String | cdk.support/lookup-entry | :function-name |
installLatestAwsSdk | java.lang.Boolean | cdk.support/lookup-entry | :install-latest-aws-sdk |
logGroup | software.amazon.awscdk.services.logs.ILogGroup | cdk.support/lookup-entry | :log-group |
logRetention | software.amazon.awscdk.services.logs.RetentionDays | cdk.api.services.logs/retention-days | :log-retention |
memorySize | java.lang.Number | cdk.support/lookup-entry | :memory-size |
onCreate | software.amazon.awscdk.customresources.AwsSdkCall | cdk.support/lookup-entry | :on-create |
onDelete | software.amazon.awscdk.customresources.AwsSdkCall | cdk.support/lookup-entry | :on-delete |
onUpdate | software.amazon.awscdk.customresources.AwsSdkCall | cdk.support/lookup-entry | :on-update |
policy | software.amazon.awscdk.customresources.AwsCustomResourcePolicy | cdk.support/lookup-entry | :policy |
removalPolicy | software.amazon.awscdk.RemovalPolicy | cdk.api/removal-policy | :removal-policy |
resourceType | java.lang.String | cdk.support/lookup-entry | :resource-type |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
vpc | software.amazon.awscdk.services.ec2.IVpc | cdk.support/lookup-entry | :vpc |
vpcSubnets | software.amazon.awscdk.services.ec2.SubnetSelection | cdk.support/lookup-entry | :vpc-subnets |
The build-aws-custom-resource-builder function updates a AwsCustomResource$Builder instance using the provided configuration. The function takes the AwsCustomResource$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 | |---|---|---|---| | `functionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-name` | | `installLatestAwsSdk` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:install-latest-aws-sdk` | | `logGroup` | software.amazon.awscdk.services.logs.ILogGroup | [[cdk.support/lookup-entry]] | `:log-group` | | `logRetention` | software.amazon.awscdk.services.logs.RetentionDays | [[cdk.api.services.logs/retention-days]] | `:log-retention` | | `memorySize` | java.lang.Number | [[cdk.support/lookup-entry]] | `:memory-size` | | `onCreate` | software.amazon.awscdk.customresources.AwsSdkCall | [[cdk.support/lookup-entry]] | `:on-create` | | `onDelete` | software.amazon.awscdk.customresources.AwsSdkCall | [[cdk.support/lookup-entry]] | `:on-delete` | | `onUpdate` | software.amazon.awscdk.customresources.AwsSdkCall | [[cdk.support/lookup-entry]] | `:on-update` | | `policy` | software.amazon.awscdk.customresources.AwsCustomResourcePolicy | [[cdk.support/lookup-entry]] | `:policy` | | `removalPolicy` | software.amazon.awscdk.RemovalPolicy | [[cdk.api/removal-policy]] | `:removal-policy` | | `resourceType` | java.lang.String | [[cdk.support/lookup-entry]] | `:resource-type` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` | | `vpc` | software.amazon.awscdk.services.ec2.IVpc | [[cdk.support/lookup-entry]] | `:vpc` | | `vpcSubnets` | software.amazon.awscdk.services.ec2.SubnetSelection | [[cdk.support/lookup-entry]] | `:vpc-subnets` |
(build-aws-custom-resource-props-builder builder id config)
The build-aws-custom-resource-props-builder function updates a AwsCustomResourceProps$Builder instance using the provided configuration. The function takes the AwsCustomResourceProps$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 |
---|---|---|---|
functionName | java.lang.String | cdk.support/lookup-entry | :function-name |
installLatestAwsSdk | java.lang.Boolean | cdk.support/lookup-entry | :install-latest-aws-sdk |
logGroup | software.amazon.awscdk.services.logs.ILogGroup | cdk.support/lookup-entry | :log-group |
logRetention | software.amazon.awscdk.services.logs.RetentionDays | cdk.api.services.logs/retention-days | :log-retention |
memorySize | java.lang.Number | cdk.support/lookup-entry | :memory-size |
onCreate | software.amazon.awscdk.customresources.AwsSdkCall | cdk.support/lookup-entry | :on-create |
onDelete | software.amazon.awscdk.customresources.AwsSdkCall | cdk.support/lookup-entry | :on-delete |
onUpdate | software.amazon.awscdk.customresources.AwsSdkCall | cdk.support/lookup-entry | :on-update |
policy | software.amazon.awscdk.customresources.AwsCustomResourcePolicy | cdk.support/lookup-entry | :policy |
removalPolicy | software.amazon.awscdk.RemovalPolicy | cdk.api/removal-policy | :removal-policy |
resourceType | java.lang.String | cdk.support/lookup-entry | :resource-type |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
timeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :timeout |
vpc | software.amazon.awscdk.services.ec2.IVpc | cdk.support/lookup-entry | :vpc |
vpcSubnets | software.amazon.awscdk.services.ec2.SubnetSelection | cdk.support/lookup-entry | :vpc-subnets |
The build-aws-custom-resource-props-builder function updates a AwsCustomResourceProps$Builder instance using the provided configuration. The function takes the AwsCustomResourceProps$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 | |---|---|---|---| | `functionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:function-name` | | `installLatestAwsSdk` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:install-latest-aws-sdk` | | `logGroup` | software.amazon.awscdk.services.logs.ILogGroup | [[cdk.support/lookup-entry]] | `:log-group` | | `logRetention` | software.amazon.awscdk.services.logs.RetentionDays | [[cdk.api.services.logs/retention-days]] | `:log-retention` | | `memorySize` | java.lang.Number | [[cdk.support/lookup-entry]] | `:memory-size` | | `onCreate` | software.amazon.awscdk.customresources.AwsSdkCall | [[cdk.support/lookup-entry]] | `:on-create` | | `onDelete` | software.amazon.awscdk.customresources.AwsSdkCall | [[cdk.support/lookup-entry]] | `:on-delete` | | `onUpdate` | software.amazon.awscdk.customresources.AwsSdkCall | [[cdk.support/lookup-entry]] | `:on-update` | | `policy` | software.amazon.awscdk.customresources.AwsCustomResourcePolicy | [[cdk.support/lookup-entry]] | `:policy` | | `removalPolicy` | software.amazon.awscdk.RemovalPolicy | [[cdk.api/removal-policy]] | `:removal-policy` | | `resourceType` | java.lang.String | [[cdk.support/lookup-entry]] | `:resource-type` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` | | `timeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:timeout` | | `vpc` | software.amazon.awscdk.services.ec2.IVpc | [[cdk.support/lookup-entry]] | `:vpc` | | `vpcSubnets` | software.amazon.awscdk.services.ec2.SubnetSelection | [[cdk.support/lookup-entry]] | `:vpc-subnets` |
(build-aws-sdk-call-builder builder id config)
The build-aws-sdk-call-builder function updates a AwsSdkCall$Builder instance using the provided configuration. The function takes the AwsSdkCall$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 |
---|---|---|---|
action | java.lang.String | cdk.support/lookup-entry | :action |
apiVersion | java.lang.String | cdk.support/lookup-entry | :api-version |
assumedRoleArn | java.lang.String | cdk.support/lookup-entry | :assumed-role-arn |
ignoreErrorCodesMatching | java.lang.String | cdk.support/lookup-entry | :ignore-error-codes-matching |
logging | software.amazon.awscdk.customresources.Logging | cdk.support/lookup-entry | :logging |
outputPaths | java.util.List | cdk.support/lookup-entry | :output-paths |
parameters | java.lang.Object | cdk.support/lookup-entry | :parameters |
physicalResourceId | software.amazon.awscdk.customresources.PhysicalResourceId | cdk.support/lookup-entry | :physical-resource-id |
region | java.lang.String | cdk.support/lookup-entry | :region |
service | java.lang.String | cdk.support/lookup-entry | :service |
The build-aws-sdk-call-builder function updates a AwsSdkCall$Builder instance using the provided configuration. The function takes the AwsSdkCall$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 | |---|---|---|---| | `action` | java.lang.String | [[cdk.support/lookup-entry]] | `:action` | | `apiVersion` | java.lang.String | [[cdk.support/lookup-entry]] | `:api-version` | | `assumedRoleArn` | java.lang.String | [[cdk.support/lookup-entry]] | `:assumed-role-arn` | | `ignoreErrorCodesMatching` | java.lang.String | [[cdk.support/lookup-entry]] | `:ignore-error-codes-matching` | | `logging` | software.amazon.awscdk.customresources.Logging | [[cdk.support/lookup-entry]] | `:logging` | | `outputPaths` | java.util.List | [[cdk.support/lookup-entry]] | `:output-paths` | | `parameters` | java.lang.Object | [[cdk.support/lookup-entry]] | `:parameters` | | `physicalResourceId` | software.amazon.awscdk.customresources.PhysicalResourceId | [[cdk.support/lookup-entry]] | `:physical-resource-id` | | `region` | java.lang.String | [[cdk.support/lookup-entry]] | `:region` | | `service` | java.lang.String | [[cdk.support/lookup-entry]] | `:service` |
(build-log-options-builder builder id config)
The build-log-options-builder function updates a LogOptions$Builder instance using the provided configuration. The function takes the LogOptions$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 |
---|---|---|---|
destination | software.amazon.awscdk.services.logs.ILogGroup | cdk.support/lookup-entry | :destination |
includeExecutionData | java.lang.Boolean | cdk.support/lookup-entry | :include-execution-data |
level | software.amazon.awscdk.services.stepfunctions.LogLevel | cdk.api.services.stepfunctions/log-level | :level |
The build-log-options-builder function updates a LogOptions$Builder instance using the provided configuration. The function takes the LogOptions$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 | |---|---|---|---| | `destination` | software.amazon.awscdk.services.logs.ILogGroup | [[cdk.support/lookup-entry]] | `:destination` | | `includeExecutionData` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:include-execution-data` | | `level` | software.amazon.awscdk.services.stepfunctions.LogLevel | [[cdk.api.services.stepfunctions/log-level]] | `:level` |
(build-logging-props-builder builder id config)
The build-logging-props-builder function updates a LoggingProps$Builder instance using the provided configuration. The function takes the LoggingProps$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 |
---|---|---|---|
logApiResponseData | java.lang.Boolean | cdk.support/lookup-entry | :log-api-response-data |
The build-logging-props-builder function updates a LoggingProps$Builder instance using the provided configuration. The function takes the LoggingProps$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 | |---|---|---|---| | `logApiResponseData` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:log-api-response-data` |
(build-provider-builder builder id config)
The build-provider-builder function updates a Provider$Builder instance using the provided configuration. The function takes the Provider$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 |
---|---|---|---|
disableWaiterStateMachineLogging | java.lang.Boolean | cdk.support/lookup-entry | :disable-waiter-state-machine-logging |
isCompleteHandler | software.amazon.awscdk.services.lambda.IFunction | cdk.support/lookup-entry | :is-complete-handler |
logGroup | software.amazon.awscdk.services.logs.ILogGroup | cdk.support/lookup-entry | :log-group |
logRetention | software.amazon.awscdk.services.logs.RetentionDays | cdk.api.services.logs/retention-days | :log-retention |
onEventHandler | software.amazon.awscdk.services.lambda.IFunction | cdk.support/lookup-entry | :on-event-handler |
providerFunctionEnvEncryption | software.amazon.awscdk.services.kms.IKey | cdk.support/lookup-entry | :provider-function-env-encryption |
providerFunctionName | java.lang.String | cdk.support/lookup-entry | :provider-function-name |
queryInterval | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :query-interval |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
securityGroups | java.util.List | cdk.support/lookup-entry | :security-groups |
totalTimeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :total-timeout |
vpc | software.amazon.awscdk.services.ec2.IVpc | cdk.support/lookup-entry | :vpc |
vpcSubnets | software.amazon.awscdk.services.ec2.SubnetSelection | cdk.support/lookup-entry | :vpc-subnets |
waiterStateMachineLogOptions | software.amazon.awscdk.customresources.LogOptions | cdk.support/lookup-entry | :waiter-state-machine-log-options |
The build-provider-builder function updates a Provider$Builder instance using the provided configuration. The function takes the Provider$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 | |---|---|---|---| | `disableWaiterStateMachineLogging` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:disable-waiter-state-machine-logging` | | `isCompleteHandler` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:is-complete-handler` | | `logGroup` | software.amazon.awscdk.services.logs.ILogGroup | [[cdk.support/lookup-entry]] | `:log-group` | | `logRetention` | software.amazon.awscdk.services.logs.RetentionDays | [[cdk.api.services.logs/retention-days]] | `:log-retention` | | `onEventHandler` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:on-event-handler` | | `providerFunctionEnvEncryption` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:provider-function-env-encryption` | | `providerFunctionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:provider-function-name` | | `queryInterval` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:query-interval` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` | | `securityGroups` | java.util.List | [[cdk.support/lookup-entry]] | `:security-groups` | | `totalTimeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:total-timeout` | | `vpc` | software.amazon.awscdk.services.ec2.IVpc | [[cdk.support/lookup-entry]] | `:vpc` | | `vpcSubnets` | software.amazon.awscdk.services.ec2.SubnetSelection | [[cdk.support/lookup-entry]] | `:vpc-subnets` | | `waiterStateMachineLogOptions` | software.amazon.awscdk.customresources.LogOptions | [[cdk.support/lookup-entry]] | `:waiter-state-machine-log-options` |
(build-provider-props-builder builder id config)
The build-provider-props-builder function updates a ProviderProps$Builder instance using the provided configuration. The function takes the ProviderProps$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 |
---|---|---|---|
disableWaiterStateMachineLogging | java.lang.Boolean | cdk.support/lookup-entry | :disable-waiter-state-machine-logging |
isCompleteHandler | software.amazon.awscdk.services.lambda.IFunction | cdk.support/lookup-entry | :is-complete-handler |
logGroup | software.amazon.awscdk.services.logs.ILogGroup | cdk.support/lookup-entry | :log-group |
logRetention | software.amazon.awscdk.services.logs.RetentionDays | cdk.api.services.logs/retention-days | :log-retention |
onEventHandler | software.amazon.awscdk.services.lambda.IFunction | cdk.support/lookup-entry | :on-event-handler |
providerFunctionEnvEncryption | software.amazon.awscdk.services.kms.IKey | cdk.support/lookup-entry | :provider-function-env-encryption |
providerFunctionName | java.lang.String | cdk.support/lookup-entry | :provider-function-name |
queryInterval | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :query-interval |
role | software.amazon.awscdk.services.iam.IRole | cdk.support/lookup-entry | :role |
securityGroups | java.util.List | cdk.support/lookup-entry | :security-groups |
totalTimeout | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :total-timeout |
vpc | software.amazon.awscdk.services.ec2.IVpc | cdk.support/lookup-entry | :vpc |
vpcSubnets | software.amazon.awscdk.services.ec2.SubnetSelection | cdk.support/lookup-entry | :vpc-subnets |
waiterStateMachineLogOptions | software.amazon.awscdk.customresources.LogOptions | cdk.support/lookup-entry | :waiter-state-machine-log-options |
The build-provider-props-builder function updates a ProviderProps$Builder instance using the provided configuration. The function takes the ProviderProps$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 | |---|---|---|---| | `disableWaiterStateMachineLogging` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:disable-waiter-state-machine-logging` | | `isCompleteHandler` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:is-complete-handler` | | `logGroup` | software.amazon.awscdk.services.logs.ILogGroup | [[cdk.support/lookup-entry]] | `:log-group` | | `logRetention` | software.amazon.awscdk.services.logs.RetentionDays | [[cdk.api.services.logs/retention-days]] | `:log-retention` | | `onEventHandler` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:on-event-handler` | | `providerFunctionEnvEncryption` | software.amazon.awscdk.services.kms.IKey | [[cdk.support/lookup-entry]] | `:provider-function-env-encryption` | | `providerFunctionName` | java.lang.String | [[cdk.support/lookup-entry]] | `:provider-function-name` | | `queryInterval` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:query-interval` | | `role` | software.amazon.awscdk.services.iam.IRole | [[cdk.support/lookup-entry]] | `:role` | | `securityGroups` | java.util.List | [[cdk.support/lookup-entry]] | `:security-groups` | | `totalTimeout` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:total-timeout` | | `vpc` | software.amazon.awscdk.services.ec2.IVpc | [[cdk.support/lookup-entry]] | `:vpc` | | `vpcSubnets` | software.amazon.awscdk.services.ec2.SubnetSelection | [[cdk.support/lookup-entry]] | `:vpc-subnets` | | `waiterStateMachineLogOptions` | software.amazon.awscdk.customresources.LogOptions | [[cdk.support/lookup-entry]] | `:waiter-state-machine-log-options` |
(build-sdk-calls-policy-options-builder builder id config)
The build-sdk-calls-policy-options-builder function updates a SdkCallsPolicyOptions$Builder instance using the provided configuration. The function takes the SdkCallsPolicyOptions$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 |
---|---|---|---|
resources | java.util.List | cdk.support/lookup-entry | :resources |
The build-sdk-calls-policy-options-builder function updates a SdkCallsPolicyOptions$Builder instance using the provided configuration. The function takes the SdkCallsPolicyOptions$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 | |---|---|---|---| | `resources` | java.util.List | [[cdk.support/lookup-entry]] | `:resources` |
(build-waiter-state-machine-builder builder id config)
The build-waiter-state-machine-builder function updates a WaiterStateMachine$Builder instance using the provided configuration. The function takes the WaiterStateMachine$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 |
---|---|---|---|
backoffRate | java.lang.Number | cdk.support/lookup-entry | :backoff-rate |
disableLogging | java.lang.Boolean | cdk.support/lookup-entry | :disable-logging |
interval | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :interval |
isCompleteHandler | software.amazon.awscdk.services.lambda.IFunction | cdk.support/lookup-entry | :is-complete-handler |
logOptions | software.amazon.awscdk.customresources.LogOptions | cdk.support/lookup-entry | :log-options |
maxAttempts | java.lang.Number | cdk.support/lookup-entry | :max-attempts |
timeoutHandler | software.amazon.awscdk.services.lambda.IFunction | cdk.support/lookup-entry | :timeout-handler |
The build-waiter-state-machine-builder function updates a WaiterStateMachine$Builder instance using the provided configuration. The function takes the WaiterStateMachine$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 | |---|---|---|---| | `backoffRate` | java.lang.Number | [[cdk.support/lookup-entry]] | `:backoff-rate` | | `disableLogging` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:disable-logging` | | `interval` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:interval` | | `isCompleteHandler` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:is-complete-handler` | | `logOptions` | software.amazon.awscdk.customresources.LogOptions | [[cdk.support/lookup-entry]] | `:log-options` | | `maxAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-attempts` | | `timeoutHandler` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:timeout-handler` |
(build-waiter-state-machine-props-builder builder id config)
The build-waiter-state-machine-props-builder function updates a WaiterStateMachineProps$Builder instance using the provided configuration. The function takes the WaiterStateMachineProps$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 |
---|---|---|---|
backoffRate | java.lang.Number | cdk.support/lookup-entry | :backoff-rate |
disableLogging | java.lang.Boolean | cdk.support/lookup-entry | :disable-logging |
interval | software.amazon.awscdk.Duration | cdk.support/lookup-entry | :interval |
isCompleteHandler | software.amazon.awscdk.services.lambda.IFunction | cdk.support/lookup-entry | :is-complete-handler |
logOptions | software.amazon.awscdk.customresources.LogOptions | cdk.support/lookup-entry | :log-options |
maxAttempts | java.lang.Number | cdk.support/lookup-entry | :max-attempts |
timeoutHandler | software.amazon.awscdk.services.lambda.IFunction | cdk.support/lookup-entry | :timeout-handler |
The build-waiter-state-machine-props-builder function updates a WaiterStateMachineProps$Builder instance using the provided configuration. The function takes the WaiterStateMachineProps$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 | |---|---|---|---| | `backoffRate` | java.lang.Number | [[cdk.support/lookup-entry]] | `:backoff-rate` | | `disableLogging` | java.lang.Boolean | [[cdk.support/lookup-entry]] | `:disable-logging` | | `interval` | software.amazon.awscdk.Duration | [[cdk.support/lookup-entry]] | `:interval` | | `isCompleteHandler` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:is-complete-handler` | | `logOptions` | software.amazon.awscdk.customresources.LogOptions | [[cdk.support/lookup-entry]] | `:log-options` | | `maxAttempts` | java.lang.Number | [[cdk.support/lookup-entry]] | `:max-attempts` | | `timeoutHandler` | software.amazon.awscdk.services.lambda.IFunction | [[cdk.support/lookup-entry]] | `:timeout-handler` |
(log-options-builder id config)
Creates a LogOptions$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 `LogOptions$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 |
(logging-props-builder id config)
Creates a LoggingProps$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 `LoggingProps$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 |
(provider-builder scope id config)
Creates a Provider$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 `Provider$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 |
(provider-props-builder id config)
Creates a ProviderProps$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 `ProviderProps$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 |
(sdk-calls-policy-options-builder id config)
Creates a SdkCallsPolicyOptions$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 `SdkCallsPolicyOptions$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 |
(waiter-state-machine-builder scope id config)
Creates a WaiterStateMachine$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 `WaiterStateMachine$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 |
(waiter-state-machine-props-builder id config)
Creates a WaiterStateMachineProps$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 `WaiterStateMachineProps$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