CfnDomainPropsMixin
- class aws_cdk.mixins_preview.aws_datazone.mixins.CfnDomainPropsMixin(props, *, strategy=None)
Bases:
MixinThe
AWS::DataZone::Domainresource specifies an Amazon DataZone domain.You can use domains to organize your assets, users, and their projects.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domain.html
- CloudformationResource:
AWS::DataZone::Domain
- Mixin:
true
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview import mixins from aws_cdk.mixins_preview.aws_datazone import mixins as datazone_mixins cfn_domain_props_mixin = datazone_mixins.CfnDomainPropsMixin(datazone_mixins.CfnDomainMixinProps( description="description", domain_execution_role="domainExecutionRole", domain_version="domainVersion", kms_key_identifier="kmsKeyIdentifier", name="name", service_role="serviceRole", single_sign_on=datazone_mixins.CfnDomainPropsMixin.SingleSignOnProperty( idc_instance_arn="idcInstanceArn", type="type", user_assignment="userAssignment" ), tags=[CfnTag( key="key", value="value" )] ), strategy=mixins.PropertyMergeStrategy.OVERRIDE )
Create a mixin to apply properties to
AWS::DataZone::Domain.- Parameters:
props (
Union[CfnDomainMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[PropertyMergeStrategy]) – (experimental) Strategy for merging nested properties. Default: - PropertyMergeStrategy.MERGE
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
- supports(construct)
Check if this mixin supports the given construct.
- Parameters:
construct (
IConstruct)- Return type:
bool
Attributes
- CFN_PROPERTY_KEYS = ['description', 'domainExecutionRole', 'domainVersion', 'kmsKeyIdentifier', 'name', 'serviceRole', 'singleSignOn', 'tags']
Static Methods
- classmethod is_mixin(x)
(experimental) Checks if
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.- Stability:
experimental
SingleSignOnProperty
- class CfnDomainPropsMixin.SingleSignOnProperty(*, idc_instance_arn=None, type=None, user_assignment=None)
Bases:
objectThe single sign-on details in Amazon DataZone.
- Parameters:
idc_instance_arn (
Optional[str]) – The ARN of the IDC instance.type (
Optional[str]) – The type of single sign-on in Amazon DataZone.user_assignment (
Optional[str]) – The single sign-on user assignment in Amazon DataZone.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_datazone import mixins as datazone_mixins single_sign_on_property = datazone_mixins.CfnDomainPropsMixin.SingleSignOnProperty( idc_instance_arn="idcInstanceArn", type="type", user_assignment="userAssignment" )
Attributes
- idc_instance_arn
The ARN of the IDC instance.
- type
The type of single sign-on in Amazon DataZone.
- user_assignment
The single sign-on user assignment in Amazon DataZone.