CfnRouterOutput
- class aws_cdk.aws_mediaconnect.CfnRouterOutput(scope, id, *, configuration, maximum_bitrate, name, routing_scope, tier, availability_zone=None, maintenance_configuration=None, region_name=None, tags=None)
Bases:
CfnResourceRepresents a router input in AWS Elemental MediaConnect that can be used to egress content transmitted from router inputs.
- See:
- CloudformationResource:
AWS::MediaConnect::RouterOutput
- 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_mediaconnect as mediaconnect # automatic: Any # default_: Any cfn_router_output = mediaconnect.CfnRouterOutput(self, "MyCfnRouterOutput", configuration=mediaconnect.CfnRouterOutput.RouterOutputConfigurationProperty( media_connect_flow=mediaconnect.CfnRouterOutput.MediaConnectFlowRouterOutputConfigurationProperty( destination_transit_encryption=mediaconnect.CfnRouterOutput.FlowTransitEncryptionProperty( encryption_key_configuration=mediaconnect.CfnRouterOutput.FlowTransitEncryptionKeyConfigurationProperty( automatic=automatic, secrets_manager=mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" ) ), # the properties below are optional encryption_key_type="encryptionKeyType" ), # the properties below are optional flow_arn="flowArn", flow_source_arn="flowSourceArn" ), media_live_input=mediaconnect.CfnRouterOutput.MediaLiveInputRouterOutputConfigurationProperty( destination_transit_encryption=mediaconnect.CfnRouterOutput.MediaLiveTransitEncryptionProperty( encryption_key_configuration=mediaconnect.CfnRouterOutput.MediaLiveTransitEncryptionKeyConfigurationProperty( automatic=automatic, secrets_manager=mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" ) ), # the properties below are optional encryption_key_type="encryptionKeyType" ), # the properties below are optional media_live_input_arn="mediaLiveInputArn", media_live_pipeline_id="mediaLivePipelineId" ), standard=mediaconnect.CfnRouterOutput.StandardRouterOutputConfigurationProperty( network_interface_arn="networkInterfaceArn", protocol_configuration=mediaconnect.CfnRouterOutput.RouterOutputProtocolConfigurationProperty( rist=mediaconnect.CfnRouterOutput.RistRouterOutputConfigurationProperty( destination_address="destinationAddress", destination_port=123 ), rtp=mediaconnect.CfnRouterOutput.RtpRouterOutputConfigurationProperty( destination_address="destinationAddress", destination_port=123, # the properties below are optional forward_error_correction="forwardErrorCorrection" ), srt_caller=mediaconnect.CfnRouterOutput.SrtCallerRouterOutputConfigurationProperty( destination_address="destinationAddress", destination_port=123, minimum_latency_milliseconds=123, # the properties below are optional encryption_configuration=mediaconnect.CfnRouterOutput.SrtEncryptionConfigurationProperty( encryption_key=mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" ) ), stream_id="streamId" ), srt_listener=mediaconnect.CfnRouterOutput.SrtListenerRouterOutputConfigurationProperty( minimum_latency_milliseconds=123, port=123, # the properties below are optional encryption_configuration=mediaconnect.CfnRouterOutput.SrtEncryptionConfigurationProperty( encryption_key=mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" ) ) ) ), # the properties below are optional protocol="protocol" ) ), maximum_bitrate=123, name="name", routing_scope="routingScope", tier="tier", # the properties below are optional availability_zone="availabilityZone", maintenance_configuration=mediaconnect.CfnRouterOutput.MaintenanceConfigurationProperty( default=default_, preferred_day_time=mediaconnect.CfnRouterOutput.PreferredDayTimeMaintenanceConfigurationProperty( day="day", time="time" ) ), region_name="regionName", tags=[CfnTag( key="key", value="value" )] )
Create a new
AWS::MediaConnect::RouterOutput.- Parameters:
scope (
Construct) – Scope in which this resource is defined.id (
str) – Construct identifier for this resource (unique in its scope).configuration (
Union[IResolvable,RouterOutputConfigurationProperty,Dict[str,Any]]) – The configuration settings for a router output.maximum_bitrate (
Union[int,float]) – The maximum bitrate for the router output.name (
str) – The name of the router output.routing_scope (
str)tier (
str)availability_zone (
Optional[str]) – The Availability Zone where you want to create the router output. This must be a valid Availability Zone for the region specified by regionName, or the current region if no regionName is provided.maintenance_configuration (
Union[IResolvable,MaintenanceConfigurationProperty,Dict[str,Any],None]) – The configuration settings for maintenance operations, including preferred maintenance windows and schedules.region_name (
Optional[str]) – The AWS Region for the router output. Defaults to the current region if not specified.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Key-value pairs that can be used to tag this router output.
Methods
- add_deletion_override(path)
Syntactic sugar for
addOverride(path, undefined).- Parameters:
path (
str) – The path of the value to delete.- Return type:
None
- add_dependency(target)
Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned.
This can be used for resources across stacks (or nested stack) boundaries and the dependency will automatically be transferred to the relevant scope.
- Parameters:
target (
CfnResource)- Return type:
None
- add_depends_on(target)
(deprecated) Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned.
- Parameters:
target (
CfnResource)- Deprecated:
use addDependency
- Stability:
deprecated
- Return type:
None
- add_metadata(key, value)
Add a value to the CloudFormation Resource Metadata.
- Parameters:
key (
str)value (
Any)
- See:
- Return type:
None
Note that this is a different set of metadata from CDK node metadata; this metadata ends up in the stack template under the resource, whereas CDK node metadata ends up in the Cloud Assembly.
- add_override(path, value)
Adds an override to the synthesized CloudFormation resource.
To add a property override, either use
addPropertyOverrideor prefixpathwith “Properties.” (i.e.Properties.TopicName).If the override is nested, separate each nested level using a dot (.) in the path parameter. If there is an array as part of the nesting, specify the index in the path.
To include a literal
.in the property name, prefix with a\. In most programming languages you will need to write this as"\\."because the\itself will need to be escaped.For example:
cfn_resource.add_override("Properties.GlobalSecondaryIndexes.0.Projection.NonKeyAttributes", ["myattribute"]) cfn_resource.add_override("Properties.GlobalSecondaryIndexes.1.ProjectionType", "INCLUDE")
would add the overrides Example:
"Properties": { "GlobalSecondaryIndexes": [ { "Projection": { "NonKeyAttributes": [ "myattribute" ] ... } ... }, { "ProjectionType": "INCLUDE" ... }, ] ... }
The
valueargument toaddOverridewill not be processed or translated in any way. Pass raw JSON values in here with the correct capitalization for CloudFormation. If you pass CDK classes or structs, they will be rendered with lowercased key names, and CloudFormation will reject the template.- Parameters:
path (
str) –The path of the property, you can use dot notation to override values in complex types. Any intermediate keys will be created as needed.
value (
Any) –The value. Could be primitive or complex.
- Return type:
None
- add_property_deletion_override(property_path)
Adds an override that deletes the value of a property from the resource definition.
- Parameters:
property_path (
str) – The path to the property.- Return type:
None
- add_property_override(property_path, value)
Adds an override to a resource property.
Syntactic sugar for
addOverride("Properties.<...>", value).- Parameters:
property_path (
str) – The path of the property.value (
Any) – The value.
- Return type:
None
- apply_removal_policy(policy=None, *, apply_to_update_replace_policy=None, default=None)
Sets the deletion policy of the resource based on the removal policy specified.
The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you’ve removed it from the CDK application or because you’ve made a change that requires the resource to be replaced.
The resource can be deleted (
RemovalPolicy.DESTROY), or left in your AWS account for data recovery and cleanup later (RemovalPolicy.RETAIN). In some cases, a snapshot can be taken of the resource prior to deletion (RemovalPolicy.SNAPSHOT). A list of resources that support this policy can be found in the following link:- Parameters:
policy (
Optional[RemovalPolicy])apply_to_update_replace_policy (
Optional[bool]) – Apply the same deletion policy to the resource’s “UpdateReplacePolicy”. Default: truedefault (
Optional[RemovalPolicy]) – The default policy to apply in case the removal policy is not defined. Default: - Default value is resource specific. To determine the default value for a resource, please consult that specific resource’s documentation.
- See:
- Return type:
None
- get_att(attribute_name, type_hint=None)
Returns a token for an runtime attribute of this resource.
Ideally, use generated attribute accessors (e.g.
resource.arn), but this can be used for future compatibility in case there is no generated attribute.- Parameters:
attribute_name (
str) – The name of the attribute.type_hint (
Optional[ResolutionTypeHint])
- Return type:
- get_metadata(key)
Retrieve a value value from the CloudFormation Resource Metadata.
- Parameters:
key (
str)- See:
- Return type:
Any
Note that this is a different set of metadata from CDK node metadata; this metadata ends up in the stack template under the resource, whereas CDK node metadata ends up in the Cloud Assembly.
- inspect(inspector)
Examines the CloudFormation resource and discloses attributes.
- Parameters:
inspector (
TreeInspector) – tree inspector to collect and process attributes.- Return type:
None
- obtain_dependencies()
Retrieves an array of resources this resource depends on.
This assembles dependencies on resources across stacks (including nested stacks) automatically.
- Return type:
List[Union[Stack,CfnResource]]
- obtain_resource_dependencies()
Get a shallow copy of dependencies between this resource and other resources in the same stack.
- Return type:
List[CfnResource]
- override_logical_id(new_logical_id)
Overrides the auto-generated logical ID with a specific ID.
- Parameters:
new_logical_id (
str) – The new logical ID to use for this stack element.- Return type:
None
- remove_dependency(target)
Indicates that this resource no longer depends on another resource.
This can be used for resources across stacks (including nested stacks) and the dependency will automatically be removed from the relevant scope.
- Parameters:
target (
CfnResource)- Return type:
None
- replace_dependency(target, new_target)
Replaces one dependency with another.
- Parameters:
target (
CfnResource) – The dependency to replace.new_target (
CfnResource) – The new dependency to add.
- Return type:
None
- to_string()
Returns a string representation of this construct.
- Return type:
str- Returns:
a string representation of this resource
Attributes
- CFN_RESOURCE_TYPE_NAME = 'AWS::MediaConnect::RouterOutput'
- attr_arn
Arn
- Type:
cloudformationAttribute
- attr_created_at
The timestamp when the router output was created.
- CloudformationAttribute:
CreatedAt
- attr_id
The unique identifier of the router output.
- CloudformationAttribute:
Id
- attr_ip_address
The IP address of the router output.
- CloudformationAttribute:
IpAddress
- attr_maintenance_type
MaintenanceType
- Type:
cloudformationAttribute
- attr_output_type
OutputType
- Type:
cloudformationAttribute
- attr_routed_state
RoutedState
- Type:
cloudformationAttribute
- attr_state
State
- Type:
cloudformationAttribute
- attr_updated_at
The timestamp when the router output was last updated.
- CloudformationAttribute:
UpdatedAt
- availability_zone
The Availability Zone where you want to create the router output.
- cdk_tag_manager
Tag Manager which manages the tags for this resource.
- cfn_options
Options for this resource, such as condition, update policy etc.
- cfn_resource_type
AWS resource type.
- configuration
The configuration settings for a router output.
- creation_stack
return:
the stack trace of the point where this Resource was created from, sourced from the +metadata+ entry typed +aws:cdk:logicalId+, and with the bottom-most node +internal+ entries filtered.
- env
- logical_id
The logical ID for this CloudFormation stack element.
The logical ID of the element is calculated from the path of the resource node in the construct tree.
To override this value, use
overrideLogicalId(newLogicalId).- Returns:
the logical ID as a stringified token. This value will only get resolved during synthesis.
- maintenance_configuration
The configuration settings for maintenance operations, including preferred maintenance windows and schedules.
- maximum_bitrate
The maximum bitrate for the router output.
- name
The name of the router output.
- node
The tree node.
- ref
Return a string that will be resolved to a CloudFormation
{ Ref }for this element.If, by any chance, the intrinsic reference of a resource is not a string, you could coerce it to an IResolvable through
Lazy.any({ produce: resource.ref }).
- region_name
The AWS Region for the router output.
- router_output_ref
A reference to a RouterOutput resource.
- routing_scope
- stack
The stack in which this element is defined.
CfnElements must be defined within a stack scope (directly or indirectly).
- tags
Key-value pairs that can be used to tag this router output.
- tier
Static Methods
- classmethod arn_for_router_output(resource)
- Parameters:
resource (
IRouterOutputRef)- Return type:
str
- classmethod is_cfn_element(x)
Returns
trueif a construct is a stack element (i.e. part of the synthesized cloudformation template).Uses duck-typing instead of
instanceofto allow stack elements from different versions of this library to be included in the same stack.- Parameters:
x (
Any)- Return type:
bool- Returns:
The construct as a stack element or undefined if it is not a stack element.
- classmethod is_cfn_resource(x)
Check whether the given object is a CfnResource.
- Parameters:
x (
Any)- Return type:
bool
- classmethod is_construct(x)
Checks if
xis a construct.Use this method instead of
instanceofto properly detectConstructinstances, even when the construct library is symlinked.Explanation: in JavaScript, multiple copies of the
constructslibrary on disk are seen as independent, completely different libraries. As a consequence, the classConstructin each copy of theconstructslibrary is seen as a different class, and an instance of one class will not test asinstanceofthe other class.npm installwill not create installations like this, but users may manually symlink construct libraries together or use a monorepo tool: in those cases, multiple copies of theconstructslibrary can be accidentally installed, andinstanceofwill behave unpredictably. It is safest to avoid usinginstanceof, and using this type-testing method instead.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsConstruct.
FlowTransitEncryptionKeyConfigurationProperty
- class CfnRouterOutput.FlowTransitEncryptionKeyConfigurationProperty(*, automatic=None, secrets_manager=None)
Bases:
object- Parameters:
automatic (
Any) – Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.secrets_manager (
Union[IResolvable,SecretsManagerEncryptionKeyConfigurationProperty,Dict[str,Any],None]) – The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.
- 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 import aws_mediaconnect as mediaconnect # automatic: Any flow_transit_encryption_key_configuration_property = mediaconnect.CfnRouterOutput.FlowTransitEncryptionKeyConfigurationProperty( automatic=automatic, secrets_manager=mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" ) )
Attributes
- automatic
Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.
- secrets_manager
The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.
FlowTransitEncryptionProperty
- class CfnRouterOutput.FlowTransitEncryptionProperty(*, encryption_key_configuration, encryption_key_type=None)
Bases:
objectThe configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.
- Parameters:
encryption_key_configuration (
Union[IResolvable,FlowTransitEncryptionKeyConfigurationProperty,Dict[str,Any]]) – Configuration settings for flow transit encryption keys.encryption_key_type (
Optional[str])
- 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 import aws_mediaconnect as mediaconnect # automatic: Any flow_transit_encryption_property = mediaconnect.CfnRouterOutput.FlowTransitEncryptionProperty( encryption_key_configuration=mediaconnect.CfnRouterOutput.FlowTransitEncryptionKeyConfigurationProperty( automatic=automatic, secrets_manager=mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" ) ), # the properties below are optional encryption_key_type="encryptionKeyType" )
Attributes
- encryption_key_configuration
Configuration settings for flow transit encryption keys.
MaintenanceConfigurationProperty
- class CfnRouterOutput.MaintenanceConfigurationProperty(*, default=None, preferred_day_time=None)
Bases:
object- Parameters:
default (
Any) – Configuration settings for default maintenance scheduling.preferred_day_time (
Union[IResolvable,PreferredDayTimeMaintenanceConfigurationProperty,Dict[str,Any],None]) – Configuration for preferred day and time maintenance settings.
- 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 import aws_mediaconnect as mediaconnect # default_: Any maintenance_configuration_property = mediaconnect.CfnRouterOutput.MaintenanceConfigurationProperty( default=default_, preferred_day_time=mediaconnect.CfnRouterOutput.PreferredDayTimeMaintenanceConfigurationProperty( day="day", time="time" ) )
Attributes
- default
Configuration settings for default maintenance scheduling.
- preferred_day_time
Configuration for preferred day and time maintenance settings.
MediaConnectFlowRouterOutputConfigurationProperty
- class CfnRouterOutput.MediaConnectFlowRouterOutputConfigurationProperty(*, destination_transit_encryption, flow_arn=None, flow_source_arn=None)
Bases:
objectConfiguration settings for connecting a router output to a MediaConnect flow source.
- Parameters:
destination_transit_encryption (
Union[IResolvable,FlowTransitEncryptionProperty,Dict[str,Any]]) – The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.flow_arn (
Optional[str]) – The ARN of the flow to connect to this router output.flow_source_arn (
Optional[str]) – The ARN of the flow source to connect to this router output.
- 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 import aws_mediaconnect as mediaconnect # automatic: Any media_connect_flow_router_output_configuration_property = mediaconnect.CfnRouterOutput.MediaConnectFlowRouterOutputConfigurationProperty( destination_transit_encryption=mediaconnect.CfnRouterOutput.FlowTransitEncryptionProperty( encryption_key_configuration=mediaconnect.CfnRouterOutput.FlowTransitEncryptionKeyConfigurationProperty( automatic=automatic, secrets_manager=mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" ) ), # the properties below are optional encryption_key_type="encryptionKeyType" ), # the properties below are optional flow_arn="flowArn", flow_source_arn="flowSourceArn" )
Attributes
- destination_transit_encryption
The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.
- flow_arn
The ARN of the flow to connect to this router output.
- flow_source_arn
The ARN of the flow source to connect to this router output.
MediaLiveInputRouterOutputConfigurationProperty
- class CfnRouterOutput.MediaLiveInputRouterOutputConfigurationProperty(*, destination_transit_encryption, media_live_input_arn=None, media_live_pipeline_id=None)
Bases:
objectConfiguration settings for connecting a router output to a MediaLive input.
- Parameters:
destination_transit_encryption (
Union[IResolvable,MediaLiveTransitEncryptionProperty,Dict[str,Any]]) – The encryption configuration that defines how content is encrypted during transit between MediaConnect Router and MediaLive. This configuration determines whether encryption keys are automatically managed by the service or manually managed through AWS Secrets Manager.media_live_input_arn (
Optional[str]) – The ARN of the MediaLive input to connect to this router output.media_live_pipeline_id (
Optional[str])
- 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 import aws_mediaconnect as mediaconnect # automatic: Any media_live_input_router_output_configuration_property = mediaconnect.CfnRouterOutput.MediaLiveInputRouterOutputConfigurationProperty( destination_transit_encryption=mediaconnect.CfnRouterOutput.MediaLiveTransitEncryptionProperty( encryption_key_configuration=mediaconnect.CfnRouterOutput.MediaLiveTransitEncryptionKeyConfigurationProperty( automatic=automatic, secrets_manager=mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" ) ), # the properties below are optional encryption_key_type="encryptionKeyType" ), # the properties below are optional media_live_input_arn="mediaLiveInputArn", media_live_pipeline_id="mediaLivePipelineId" )
Attributes
- destination_transit_encryption
The encryption configuration that defines how content is encrypted during transit between MediaConnect Router and MediaLive.
This configuration determines whether encryption keys are automatically managed by the service or manually managed through AWS Secrets Manager.
- media_live_input_arn
The ARN of the MediaLive input to connect to this router output.
MediaLiveTransitEncryptionKeyConfigurationProperty
- class CfnRouterOutput.MediaLiveTransitEncryptionKeyConfigurationProperty(*, automatic=None, secrets_manager=None)
Bases:
object- Parameters:
automatic (
Any) – Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.secrets_manager (
Union[IResolvable,SecretsManagerEncryptionKeyConfigurationProperty,Dict[str,Any],None]) – The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.
- 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 import aws_mediaconnect as mediaconnect # automatic: Any media_live_transit_encryption_key_configuration_property = mediaconnect.CfnRouterOutput.MediaLiveTransitEncryptionKeyConfigurationProperty( automatic=automatic, secrets_manager=mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" ) )
Attributes
- automatic
Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.
- secrets_manager
The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.
MediaLiveTransitEncryptionProperty
- class CfnRouterOutput.MediaLiveTransitEncryptionProperty(*, encryption_key_configuration, encryption_key_type=None)
Bases:
objectThe encryption configuration that defines how content is encrypted during transit between MediaConnect Router and MediaLive.
This configuration determines whether encryption keys are automatically managed by the service or manually managed through AWS Secrets Manager.
- Parameters:
encryption_key_configuration (
Union[IResolvable,MediaLiveTransitEncryptionKeyConfigurationProperty,Dict[str,Any]]) – Configuration settings for the MediaLive transit encryption key.encryption_key_type (
Optional[str])
- 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 import aws_mediaconnect as mediaconnect # automatic: Any media_live_transit_encryption_property = mediaconnect.CfnRouterOutput.MediaLiveTransitEncryptionProperty( encryption_key_configuration=mediaconnect.CfnRouterOutput.MediaLiveTransitEncryptionKeyConfigurationProperty( automatic=automatic, secrets_manager=mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" ) ), # the properties below are optional encryption_key_type="encryptionKeyType" )
Attributes
- encryption_key_configuration
Configuration settings for the MediaLive transit encryption key.
PreferredDayTimeMaintenanceConfigurationProperty
- class CfnRouterOutput.PreferredDayTimeMaintenanceConfigurationProperty(*, day, time)
Bases:
objectConfiguration for preferred day and time maintenance settings.
- Parameters:
day (
str)time (
str) – The preferred time for maintenance operations.
- 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 import aws_mediaconnect as mediaconnect preferred_day_time_maintenance_configuration_property = mediaconnect.CfnRouterOutput.PreferredDayTimeMaintenanceConfigurationProperty( day="day", time="time" )
Attributes
- day
-
- Type:
see
- time
The preferred time for maintenance operations.
RistRouterOutputConfigurationProperty
- class CfnRouterOutput.RistRouterOutputConfigurationProperty(*, destination_address, destination_port)
Bases:
objectThe configuration settings for a router output using the RIST (Reliable Internet Stream Transport) protocol, including the destination address and port.
- Parameters:
destination_address (
str) – The destination IP address for the RIST protocol in the router output configuration.destination_port (
Union[int,float]) – The destination port number for the RIST protocol in the router output configuration.
- 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 import aws_mediaconnect as mediaconnect rist_router_output_configuration_property = mediaconnect.CfnRouterOutput.RistRouterOutputConfigurationProperty( destination_address="destinationAddress", destination_port=123 )
Attributes
- destination_address
The destination IP address for the RIST protocol in the router output configuration.
- destination_port
The destination port number for the RIST protocol in the router output configuration.
RouterOutputConfigurationProperty
- class CfnRouterOutput.RouterOutputConfigurationProperty(*, media_connect_flow=None, media_live_input=None, standard=None)
Bases:
object- Parameters:
media_connect_flow (
Union[IResolvable,MediaConnectFlowRouterOutputConfigurationProperty,Dict[str,Any],None]) – Configuration settings for connecting a router output to a MediaConnect flow source.media_live_input (
Union[IResolvable,MediaLiveInputRouterOutputConfigurationProperty,Dict[str,Any],None]) – Configuration settings for connecting a router output to a MediaLive input.standard (
Union[IResolvable,StandardRouterOutputConfigurationProperty,Dict[str,Any],None]) – The configuration settings for a standard router output, including the protocol, protocol-specific configuration, network interface, and availability zone.
- 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 import aws_mediaconnect as mediaconnect # automatic: Any router_output_configuration_property = mediaconnect.CfnRouterOutput.RouterOutputConfigurationProperty( media_connect_flow=mediaconnect.CfnRouterOutput.MediaConnectFlowRouterOutputConfigurationProperty( destination_transit_encryption=mediaconnect.CfnRouterOutput.FlowTransitEncryptionProperty( encryption_key_configuration=mediaconnect.CfnRouterOutput.FlowTransitEncryptionKeyConfigurationProperty( automatic=automatic, secrets_manager=mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" ) ), # the properties below are optional encryption_key_type="encryptionKeyType" ), # the properties below are optional flow_arn="flowArn", flow_source_arn="flowSourceArn" ), media_live_input=mediaconnect.CfnRouterOutput.MediaLiveInputRouterOutputConfigurationProperty( destination_transit_encryption=mediaconnect.CfnRouterOutput.MediaLiveTransitEncryptionProperty( encryption_key_configuration=mediaconnect.CfnRouterOutput.MediaLiveTransitEncryptionKeyConfigurationProperty( automatic=automatic, secrets_manager=mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" ) ), # the properties below are optional encryption_key_type="encryptionKeyType" ), # the properties below are optional media_live_input_arn="mediaLiveInputArn", media_live_pipeline_id="mediaLivePipelineId" ), standard=mediaconnect.CfnRouterOutput.StandardRouterOutputConfigurationProperty( network_interface_arn="networkInterfaceArn", protocol_configuration=mediaconnect.CfnRouterOutput.RouterOutputProtocolConfigurationProperty( rist=mediaconnect.CfnRouterOutput.RistRouterOutputConfigurationProperty( destination_address="destinationAddress", destination_port=123 ), rtp=mediaconnect.CfnRouterOutput.RtpRouterOutputConfigurationProperty( destination_address="destinationAddress", destination_port=123, # the properties below are optional forward_error_correction="forwardErrorCorrection" ), srt_caller=mediaconnect.CfnRouterOutput.SrtCallerRouterOutputConfigurationProperty( destination_address="destinationAddress", destination_port=123, minimum_latency_milliseconds=123, # the properties below are optional encryption_configuration=mediaconnect.CfnRouterOutput.SrtEncryptionConfigurationProperty( encryption_key=mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" ) ), stream_id="streamId" ), srt_listener=mediaconnect.CfnRouterOutput.SrtListenerRouterOutputConfigurationProperty( minimum_latency_milliseconds=123, port=123, # the properties below are optional encryption_configuration=mediaconnect.CfnRouterOutput.SrtEncryptionConfigurationProperty( encryption_key=mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" ) ) ) ), # the properties below are optional protocol="protocol" ) )
Attributes
- media_connect_flow
Configuration settings for connecting a router output to a MediaConnect flow source.
- media_live_input
Configuration settings for connecting a router output to a MediaLive input.
- standard
The configuration settings for a standard router output, including the protocol, protocol-specific configuration, network interface, and availability zone.
RouterOutputProtocolConfigurationProperty
- class CfnRouterOutput.RouterOutputProtocolConfigurationProperty(*, rist=None, rtp=None, srt_caller=None, srt_listener=None)
Bases:
object- Parameters:
rist (
Union[IResolvable,RistRouterOutputConfigurationProperty,Dict[str,Any],None]) – The configuration settings for a router output using the RIST (Reliable Internet Stream Transport) protocol, including the destination address and port.rtp (
Union[IResolvable,RtpRouterOutputConfigurationProperty,Dict[str,Any],None]) – The configuration settings for a router output using the RTP (Real-Time Transport Protocol) protocol, including the destination address and port, and forward error correction state.srt_caller (
Union[IResolvable,SrtCallerRouterOutputConfigurationProperty,Dict[str,Any],None]) – The configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in caller mode, including the destination address and port, minimum latency, stream ID, and encryption key configuration.srt_listener (
Union[IResolvable,SrtListenerRouterOutputConfigurationProperty,Dict[str,Any],None]) – The configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in listener mode, including the port, minimum latency, and encryption key configuration.
- 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 import aws_mediaconnect as mediaconnect router_output_protocol_configuration_property = mediaconnect.CfnRouterOutput.RouterOutputProtocolConfigurationProperty( rist=mediaconnect.CfnRouterOutput.RistRouterOutputConfigurationProperty( destination_address="destinationAddress", destination_port=123 ), rtp=mediaconnect.CfnRouterOutput.RtpRouterOutputConfigurationProperty( destination_address="destinationAddress", destination_port=123, # the properties below are optional forward_error_correction="forwardErrorCorrection" ), srt_caller=mediaconnect.CfnRouterOutput.SrtCallerRouterOutputConfigurationProperty( destination_address="destinationAddress", destination_port=123, minimum_latency_milliseconds=123, # the properties below are optional encryption_configuration=mediaconnect.CfnRouterOutput.SrtEncryptionConfigurationProperty( encryption_key=mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" ) ), stream_id="streamId" ), srt_listener=mediaconnect.CfnRouterOutput.SrtListenerRouterOutputConfigurationProperty( minimum_latency_milliseconds=123, port=123, # the properties below are optional encryption_configuration=mediaconnect.CfnRouterOutput.SrtEncryptionConfigurationProperty( encryption_key=mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" ) ) ) )
Attributes
- rist
The configuration settings for a router output using the RIST (Reliable Internet Stream Transport) protocol, including the destination address and port.
- rtp
The configuration settings for a router output using the RTP (Real-Time Transport Protocol) protocol, including the destination address and port, and forward error correction state.
- srt_caller
The configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in caller mode, including the destination address and port, minimum latency, stream ID, and encryption key configuration.
- srt_listener
The configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in listener mode, including the port, minimum latency, and encryption key configuration.
RtpRouterOutputConfigurationProperty
- class CfnRouterOutput.RtpRouterOutputConfigurationProperty(*, destination_address, destination_port, forward_error_correction=None)
Bases:
objectThe configuration settings for a router output using the RTP (Real-Time Transport Protocol) protocol, including the destination address and port, and forward error correction state.
- Parameters:
destination_address (
str) – The destination IP address for the RTP protocol in the router output configuration.destination_port (
Union[int,float]) – The destination port number for the RTP protocol in the router output configuration.forward_error_correction (
Optional[str])
- 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 import aws_mediaconnect as mediaconnect rtp_router_output_configuration_property = mediaconnect.CfnRouterOutput.RtpRouterOutputConfigurationProperty( destination_address="destinationAddress", destination_port=123, # the properties below are optional forward_error_correction="forwardErrorCorrection" )
Attributes
- destination_address
The destination IP address for the RTP protocol in the router output configuration.
- destination_port
The destination port number for the RTP protocol in the router output configuration.
SecretsManagerEncryptionKeyConfigurationProperty
- class CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty(*, role_arn, secret_arn)
Bases:
objectThe configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.
- Parameters:
role_arn (
str) – The ARN of the IAM role assumed by MediaConnect to access the AWS Secrets Manager secret.secret_arn (
str) – The ARN of the AWS Secrets Manager secret used for transit encryption.
- 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 import aws_mediaconnect as mediaconnect secrets_manager_encryption_key_configuration_property = mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" )
Attributes
- role_arn
The ARN of the IAM role assumed by MediaConnect to access the AWS Secrets Manager secret.
- secret_arn
The ARN of the AWS Secrets Manager secret used for transit encryption.
SrtCallerRouterOutputConfigurationProperty
- class CfnRouterOutput.SrtCallerRouterOutputConfigurationProperty(*, destination_address, destination_port, minimum_latency_milliseconds, encryption_configuration=None, stream_id=None)
Bases:
objectThe configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in caller mode, including the destination address and port, minimum latency, stream ID, and encryption key configuration.
- Parameters:
destination_address (
str) – The destination IP address for the SRT protocol in caller mode.destination_port (
Union[int,float]) – The destination port number for the SRT protocol in caller mode.minimum_latency_milliseconds (
Union[int,float]) – The minimum latency in milliseconds for the SRT protocol in caller mode.encryption_configuration (
Union[IResolvable,SrtEncryptionConfigurationProperty,Dict[str,Any],None]) – Contains the configuration settings for encrypting SRT streams, including the encryption key details and encryption parameters.stream_id (
Optional[str]) – The stream ID for the SRT protocol in caller mode.
- 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 import aws_mediaconnect as mediaconnect srt_caller_router_output_configuration_property = mediaconnect.CfnRouterOutput.SrtCallerRouterOutputConfigurationProperty( destination_address="destinationAddress", destination_port=123, minimum_latency_milliseconds=123, # the properties below are optional encryption_configuration=mediaconnect.CfnRouterOutput.SrtEncryptionConfigurationProperty( encryption_key=mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" ) ), stream_id="streamId" )
Attributes
- destination_address
The destination IP address for the SRT protocol in caller mode.
- destination_port
The destination port number for the SRT protocol in caller mode.
- encryption_configuration
Contains the configuration settings for encrypting SRT streams, including the encryption key details and encryption parameters.
- minimum_latency_milliseconds
The minimum latency in milliseconds for the SRT protocol in caller mode.
- stream_id
The stream ID for the SRT protocol in caller mode.
SrtEncryptionConfigurationProperty
- class CfnRouterOutput.SrtEncryptionConfigurationProperty(*, encryption_key)
Bases:
objectContains the configuration settings for encrypting SRT streams, including the encryption key details and encryption parameters.
- Parameters:
encryption_key (
Union[IResolvable,SecretsManagerEncryptionKeyConfigurationProperty,Dict[str,Any]]) – The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.- 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 import aws_mediaconnect as mediaconnect srt_encryption_configuration_property = mediaconnect.CfnRouterOutput.SrtEncryptionConfigurationProperty( encryption_key=mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" ) )
Attributes
- encryption_key
The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.
SrtListenerRouterOutputConfigurationProperty
- class CfnRouterOutput.SrtListenerRouterOutputConfigurationProperty(*, minimum_latency_milliseconds, port, encryption_configuration=None)
Bases:
objectThe configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in listener mode, including the port, minimum latency, and encryption key configuration.
- Parameters:
minimum_latency_milliseconds (
Union[int,float]) – The minimum latency in milliseconds for the SRT protocol in listener mode.port (
Union[int,float]) – The port number for the SRT protocol in listener mode.encryption_configuration (
Union[IResolvable,SrtEncryptionConfigurationProperty,Dict[str,Any],None]) – Contains the configuration settings for encrypting SRT streams, including the encryption key details and encryption parameters.
- 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 import aws_mediaconnect as mediaconnect srt_listener_router_output_configuration_property = mediaconnect.CfnRouterOutput.SrtListenerRouterOutputConfigurationProperty( minimum_latency_milliseconds=123, port=123, # the properties below are optional encryption_configuration=mediaconnect.CfnRouterOutput.SrtEncryptionConfigurationProperty( encryption_key=mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" ) ) )
Attributes
- encryption_configuration
Contains the configuration settings for encrypting SRT streams, including the encryption key details and encryption parameters.
- minimum_latency_milliseconds
The minimum latency in milliseconds for the SRT protocol in listener mode.
- port
The port number for the SRT protocol in listener mode.
StandardRouterOutputConfigurationProperty
- class CfnRouterOutput.StandardRouterOutputConfigurationProperty(*, network_interface_arn, protocol_configuration, protocol=None)
Bases:
objectThe configuration settings for a standard router output, including the protocol, protocol-specific configuration, network interface, and availability zone.
- Parameters:
network_interface_arn (
str) – The Amazon Resource Name (ARN) of the network interface associated with the standard router output.protocol_configuration (
Union[IResolvable,RouterOutputProtocolConfigurationProperty,Dict[str,Any]]) – The protocol configuration settings for a router output.protocol (
Optional[str])
- 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 import aws_mediaconnect as mediaconnect standard_router_output_configuration_property = mediaconnect.CfnRouterOutput.StandardRouterOutputConfigurationProperty( network_interface_arn="networkInterfaceArn", protocol_configuration=mediaconnect.CfnRouterOutput.RouterOutputProtocolConfigurationProperty( rist=mediaconnect.CfnRouterOutput.RistRouterOutputConfigurationProperty( destination_address="destinationAddress", destination_port=123 ), rtp=mediaconnect.CfnRouterOutput.RtpRouterOutputConfigurationProperty( destination_address="destinationAddress", destination_port=123, # the properties below are optional forward_error_correction="forwardErrorCorrection" ), srt_caller=mediaconnect.CfnRouterOutput.SrtCallerRouterOutputConfigurationProperty( destination_address="destinationAddress", destination_port=123, minimum_latency_milliseconds=123, # the properties below are optional encryption_configuration=mediaconnect.CfnRouterOutput.SrtEncryptionConfigurationProperty( encryption_key=mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" ) ), stream_id="streamId" ), srt_listener=mediaconnect.CfnRouterOutput.SrtListenerRouterOutputConfigurationProperty( minimum_latency_milliseconds=123, port=123, # the properties below are optional encryption_configuration=mediaconnect.CfnRouterOutput.SrtEncryptionConfigurationProperty( encryption_key=mediaconnect.CfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty( role_arn="roleArn", secret_arn="secretArn" ) ) ) ), # the properties below are optional protocol="protocol" )
Attributes
- network_interface_arn
The Amazon Resource Name (ARN) of the network interface associated with the standard router output.
- protocol
-
- Type:
see
- protocol_configuration
The protocol configuration settings for a router output.