Liking cljdoc? Tell your friends :D

cdk.api.customresources

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. 
raw docstring

aws-custom-resource-builderclj

(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 |
sourceraw docstring

aws-custom-resource-props-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

aws-sdk-call-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

build-aws-custom-resource-builderclj

(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:

FieldDataTypeLookup FunctionData Key
functionNamejava.lang.Stringcdk.support/lookup-entry:function-name
installLatestAwsSdkjava.lang.Booleancdk.support/lookup-entry:install-latest-aws-sdk
logGroupsoftware.amazon.awscdk.services.logs.ILogGroupcdk.support/lookup-entry:log-group
logRetentionsoftware.amazon.awscdk.services.logs.RetentionDayscdk.api.services.logs/retention-days:log-retention
memorySizejava.lang.Numbercdk.support/lookup-entry:memory-size
onCreatesoftware.amazon.awscdk.customresources.AwsSdkCallcdk.support/lookup-entry:on-create
onDeletesoftware.amazon.awscdk.customresources.AwsSdkCallcdk.support/lookup-entry:on-delete
onUpdatesoftware.amazon.awscdk.customresources.AwsSdkCallcdk.support/lookup-entry:on-update
policysoftware.amazon.awscdk.customresources.AwsCustomResourcePolicycdk.support/lookup-entry:policy
removalPolicysoftware.amazon.awscdk.RemovalPolicycdk.api/removal-policy:removal-policy
resourceTypejava.lang.Stringcdk.support/lookup-entry:resource-type
rolesoftware.amazon.awscdk.services.iam.IRolecdk.support/lookup-entry:role
timeoutsoftware.amazon.awscdk.Durationcdk.support/lookup-entry:timeout
vpcsoftware.amazon.awscdk.services.ec2.IVpccdk.support/lookup-entry:vpc
vpcSubnetssoftware.amazon.awscdk.services.ec2.SubnetSelectioncdk.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` |
sourceraw docstring

build-aws-custom-resource-props-builderclj

(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:

FieldDataTypeLookup FunctionData Key
functionNamejava.lang.Stringcdk.support/lookup-entry:function-name
installLatestAwsSdkjava.lang.Booleancdk.support/lookup-entry:install-latest-aws-sdk
logGroupsoftware.amazon.awscdk.services.logs.ILogGroupcdk.support/lookup-entry:log-group
logRetentionsoftware.amazon.awscdk.services.logs.RetentionDayscdk.api.services.logs/retention-days:log-retention
memorySizejava.lang.Numbercdk.support/lookup-entry:memory-size
onCreatesoftware.amazon.awscdk.customresources.AwsSdkCallcdk.support/lookup-entry:on-create
onDeletesoftware.amazon.awscdk.customresources.AwsSdkCallcdk.support/lookup-entry:on-delete
onUpdatesoftware.amazon.awscdk.customresources.AwsSdkCallcdk.support/lookup-entry:on-update
policysoftware.amazon.awscdk.customresources.AwsCustomResourcePolicycdk.support/lookup-entry:policy
removalPolicysoftware.amazon.awscdk.RemovalPolicycdk.api/removal-policy:removal-policy
resourceTypejava.lang.Stringcdk.support/lookup-entry:resource-type
rolesoftware.amazon.awscdk.services.iam.IRolecdk.support/lookup-entry:role
timeoutsoftware.amazon.awscdk.Durationcdk.support/lookup-entry:timeout
vpcsoftware.amazon.awscdk.services.ec2.IVpccdk.support/lookup-entry:vpc
vpcSubnetssoftware.amazon.awscdk.services.ec2.SubnetSelectioncdk.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` |
sourceraw docstring

build-aws-sdk-call-builderclj

(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:

FieldDataTypeLookup FunctionData Key
actionjava.lang.Stringcdk.support/lookup-entry:action
apiVersionjava.lang.Stringcdk.support/lookup-entry:api-version
assumedRoleArnjava.lang.Stringcdk.support/lookup-entry:assumed-role-arn
ignoreErrorCodesMatchingjava.lang.Stringcdk.support/lookup-entry:ignore-error-codes-matching
loggingsoftware.amazon.awscdk.customresources.Loggingcdk.support/lookup-entry:logging
outputPathsjava.util.Listcdk.support/lookup-entry:output-paths
parametersjava.lang.Objectcdk.support/lookup-entry:parameters
physicalResourceIdsoftware.amazon.awscdk.customresources.PhysicalResourceIdcdk.support/lookup-entry:physical-resource-id
regionjava.lang.Stringcdk.support/lookup-entry:region
servicejava.lang.Stringcdk.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` |
sourceraw docstring

build-log-options-builderclj

(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:

FieldDataTypeLookup FunctionData Key
destinationsoftware.amazon.awscdk.services.logs.ILogGroupcdk.support/lookup-entry:destination
includeExecutionDatajava.lang.Booleancdk.support/lookup-entry:include-execution-data
levelsoftware.amazon.awscdk.services.stepfunctions.LogLevelcdk.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` |
sourceraw docstring

build-logging-props-builderclj

(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:

FieldDataTypeLookup FunctionData Key
logApiResponseDatajava.lang.Booleancdk.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` |
sourceraw docstring

build-provider-builderclj

(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:

FieldDataTypeLookup FunctionData Key
disableWaiterStateMachineLoggingjava.lang.Booleancdk.support/lookup-entry:disable-waiter-state-machine-logging
isCompleteHandlersoftware.amazon.awscdk.services.lambda.IFunctioncdk.support/lookup-entry:is-complete-handler
logGroupsoftware.amazon.awscdk.services.logs.ILogGroupcdk.support/lookup-entry:log-group
logRetentionsoftware.amazon.awscdk.services.logs.RetentionDayscdk.api.services.logs/retention-days:log-retention
onEventHandlersoftware.amazon.awscdk.services.lambda.IFunctioncdk.support/lookup-entry:on-event-handler
providerFunctionEnvEncryptionsoftware.amazon.awscdk.services.kms.IKeycdk.support/lookup-entry:provider-function-env-encryption
providerFunctionNamejava.lang.Stringcdk.support/lookup-entry:provider-function-name
queryIntervalsoftware.amazon.awscdk.Durationcdk.support/lookup-entry:query-interval
rolesoftware.amazon.awscdk.services.iam.IRolecdk.support/lookup-entry:role
securityGroupsjava.util.Listcdk.support/lookup-entry:security-groups
totalTimeoutsoftware.amazon.awscdk.Durationcdk.support/lookup-entry:total-timeout
vpcsoftware.amazon.awscdk.services.ec2.IVpccdk.support/lookup-entry:vpc
vpcSubnetssoftware.amazon.awscdk.services.ec2.SubnetSelectioncdk.support/lookup-entry:vpc-subnets
waiterStateMachineLogOptionssoftware.amazon.awscdk.customresources.LogOptionscdk.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` |
sourceraw docstring

build-provider-props-builderclj

(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:

FieldDataTypeLookup FunctionData Key
disableWaiterStateMachineLoggingjava.lang.Booleancdk.support/lookup-entry:disable-waiter-state-machine-logging
isCompleteHandlersoftware.amazon.awscdk.services.lambda.IFunctioncdk.support/lookup-entry:is-complete-handler
logGroupsoftware.amazon.awscdk.services.logs.ILogGroupcdk.support/lookup-entry:log-group
logRetentionsoftware.amazon.awscdk.services.logs.RetentionDayscdk.api.services.logs/retention-days:log-retention
onEventHandlersoftware.amazon.awscdk.services.lambda.IFunctioncdk.support/lookup-entry:on-event-handler
providerFunctionEnvEncryptionsoftware.amazon.awscdk.services.kms.IKeycdk.support/lookup-entry:provider-function-env-encryption
providerFunctionNamejava.lang.Stringcdk.support/lookup-entry:provider-function-name
queryIntervalsoftware.amazon.awscdk.Durationcdk.support/lookup-entry:query-interval
rolesoftware.amazon.awscdk.services.iam.IRolecdk.support/lookup-entry:role
securityGroupsjava.util.Listcdk.support/lookup-entry:security-groups
totalTimeoutsoftware.amazon.awscdk.Durationcdk.support/lookup-entry:total-timeout
vpcsoftware.amazon.awscdk.services.ec2.IVpccdk.support/lookup-entry:vpc
vpcSubnetssoftware.amazon.awscdk.services.ec2.SubnetSelectioncdk.support/lookup-entry:vpc-subnets
waiterStateMachineLogOptionssoftware.amazon.awscdk.customresources.LogOptionscdk.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` |
sourceraw docstring

build-sdk-calls-policy-options-builderclj

(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:

FieldDataTypeLookup FunctionData Key
resourcesjava.util.Listcdk.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` |
sourceraw docstring

build-waiter-state-machine-builderclj

(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:

FieldDataTypeLookup FunctionData Key
backoffRatejava.lang.Numbercdk.support/lookup-entry:backoff-rate
disableLoggingjava.lang.Booleancdk.support/lookup-entry:disable-logging
intervalsoftware.amazon.awscdk.Durationcdk.support/lookup-entry:interval
isCompleteHandlersoftware.amazon.awscdk.services.lambda.IFunctioncdk.support/lookup-entry:is-complete-handler
logOptionssoftware.amazon.awscdk.customresources.LogOptionscdk.support/lookup-entry:log-options
maxAttemptsjava.lang.Numbercdk.support/lookup-entry:max-attempts
timeoutHandlersoftware.amazon.awscdk.services.lambda.IFunctioncdk.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` |
sourceraw docstring

build-waiter-state-machine-props-builderclj

(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:

FieldDataTypeLookup FunctionData Key
backoffRatejava.lang.Numbercdk.support/lookup-entry:backoff-rate
disableLoggingjava.lang.Booleancdk.support/lookup-entry:disable-logging
intervalsoftware.amazon.awscdk.Durationcdk.support/lookup-entry:interval
isCompleteHandlersoftware.amazon.awscdk.services.lambda.IFunctioncdk.support/lookup-entry:is-complete-handler
logOptionssoftware.amazon.awscdk.customresources.LogOptionscdk.support/lookup-entry:log-options
maxAttemptsjava.lang.Numbercdk.support/lookup-entry:max-attempts
timeoutHandlersoftware.amazon.awscdk.services.lambda.IFunctioncdk.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` |
sourceraw docstring

log-options-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

logging-props-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

provider-builderclj

(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 |
sourceraw docstring

provider-props-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

sdk-calls-policy-options-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

waiter-state-machine-builderclj

(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 |
sourceraw docstring

waiter-state-machine-props-builderclj

(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:

ArgumentDataTypeDescription
idString or Keyword or SymbolValue to use as namespace when looking up configuration values.
configmapData 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 |
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close