Interface CfnSourceLocation.AccessConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSourceLocation.AccessConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnSourceLocation

@Stability(Stable) public static interface CfnSourceLocation.AccessConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Access configuration parameters.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.mediatailor.*;
 AccessConfigurationProperty accessConfigurationProperty = AccessConfigurationProperty.builder()
         .accessType("accessType")
         .secretsManagerAccessTokenConfiguration(SecretsManagerAccessTokenConfigurationProperty.builder()
                 .headerName("headerName")
                 .secretArn("secretArn")
                 .secretStringKey("secretStringKey")
                 .build())
         .build();
 

See Also: