PredefinedAttributeReference
- class aws_cdk.aws_connect.PredefinedAttributeReference(*, instance_arn, predefined_attribute_name)
Bases:
object
A reference to a PredefinedAttribute resource.
- Parameters:
instance_arn (
str
) – The InstanceArn of the PredefinedAttribute resource.predefined_attribute_name (
str
) – The Name of the PredefinedAttribute resource.
- 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 import aws_connect as connect predefined_attribute_reference = connect.PredefinedAttributeReference( instance_arn="instanceArn", predefined_attribute_name="predefinedAttributeName" )
Attributes
- instance_arn
The InstanceArn of the PredefinedAttribute resource.
- predefined_attribute_name
The Name of the PredefinedAttribute resource.