ApprovedOriginReference
- class aws_cdk.aws_connect.ApprovedOriginReference(*, instance_id, origin)
Bases:
object
A reference to a ApprovedOrigin resource.
- Parameters:
instance_id (
str
) – The InstanceId of the ApprovedOrigin resource.origin (
str
) – The Origin of the ApprovedOrigin 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 approved_origin_reference = connect.ApprovedOriginReference( instance_id="instanceId", origin="origin" )
Attributes
- instance_id
The InstanceId of the ApprovedOrigin resource.
- origin
The Origin of the ApprovedOrigin resource.