Interface CfnConnectorMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:28.368Z")
@Stability(Stable)
public interface CfnConnectorMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnConnectorPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.inspectorv2.*;
CfnConnectorMixinProps cfnConnectorMixinProps = CfnConnectorMixinProps.builder()
.description("description")
.name("name")
.provider("provider")
.providerConfiguration(ProviderConfigurationProperty.builder()
.azure(AzureProviderConfigurationProperty.builder()
.autoInstallVmScanner(false)
.awsConfigConnectorArn("awsConfigConnectorArn")
.azureRegions(List.of("azureRegions"))
.scopeConfiguration(AzureScopeConfigurationMapProperty.builder()
.containerImageScanning(ScopeConfigurationProperty.builder()
.scopeType("scopeType")
.scopeValues(List.of("scopeValues"))
.state("state")
.stateReason("stateReason")
.build())
.serverlessScanning(ScopeConfigurationProperty.builder()
.scopeType("scopeType")
.scopeValues(List.of("scopeValues"))
.state("state")
.stateReason("stateReason")
.build())
.vmScanning(ScopeConfigurationProperty.builder()
.scopeType("scopeType")
.scopeValues(List.of("scopeValues"))
.state("state")
.stateReason("stateReason")
.build())
.build())
.build())
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnectorMixinPropsstatic final classAn implementation forCfnConnectorMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringOptional description of the connector.default StringgetName()Display name for the connector.default Stringdefault ObjectReturns union: eitherIResolvableorCfnConnectorPropsMixin.ProviderConfigurationPropertygetTags()Tags to apply to the connector.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
Optional description of the connector.- See Also:
-
getName
Display name for the connector.- See Also:
-
getProvider
- See Also:
-
getProviderConfiguration
Returns union: eitherIResolvableorCfnConnectorPropsMixin.ProviderConfigurationProperty- See Also:
-
getTags
Tags to apply to the connector.- See Also:
-
builder
- Returns:
- a
CfnConnectorMixinProps.BuilderofCfnConnectorMixinProps
-