aws.mediapackage.Channel
Explore with Pulumi AI
Provides an AWS Elemental MediaPackage Channel.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const kittens = new aws.mediapackage.Channel("kittens", {
channelId: "kitten-channel",
description: "A channel dedicated to amusing videos of kittens.",
});
import pulumi
import pulumi_aws as aws
kittens = aws.mediapackage.Channel("kittens",
channel_id="kitten-channel",
description="A channel dedicated to amusing videos of kittens.")
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/mediapackage"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := mediapackage.NewChannel(ctx, "kittens", &mediapackage.ChannelArgs{
ChannelId: pulumi.String("kitten-channel"),
Description: pulumi.String("A channel dedicated to amusing videos of kittens."),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var kittens = new Aws.MediaPackage.Channel("kittens", new()
{
ChannelId = "kitten-channel",
Description = "A channel dedicated to amusing videos of kittens.",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.mediapackage.Channel;
import com.pulumi.aws.mediapackage.ChannelArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var kittens = new Channel("kittens", ChannelArgs.builder()
.channelId("kitten-channel")
.description("A channel dedicated to amusing videos of kittens.")
.build());
}
}
resources:
kittens:
type: aws:mediapackage:Channel
properties:
channelId: kitten-channel
description: A channel dedicated to amusing videos of kittens.
Create Channel Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Channel(name: string, args: ChannelArgs, opts?: CustomResourceOptions);
@overload
def Channel(resource_name: str,
args: ChannelArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Channel(resource_name: str,
opts: Optional[ResourceOptions] = None,
channel_id: Optional[str] = None,
description: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewChannel(ctx *Context, name string, args ChannelArgs, opts ...ResourceOption) (*Channel, error)
public Channel(string name, ChannelArgs args, CustomResourceOptions? opts = null)
public Channel(String name, ChannelArgs args)
public Channel(String name, ChannelArgs args, CustomResourceOptions options)
type: aws:mediapackage:Channel
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ChannelArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ChannelArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ChannelArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ChannelArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ChannelArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var examplechannelResourceResourceFromMediapackagechannel = new Aws.MediaPackage.Channel("examplechannelResourceResourceFromMediapackagechannel", new()
{
ChannelId = "string",
Description = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := mediapackage.NewChannel(ctx, "examplechannelResourceResourceFromMediapackagechannel", &mediapackage.ChannelArgs{
ChannelId: pulumi.String("string"),
Description: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var examplechannelResourceResourceFromMediapackagechannel = new Channel("examplechannelResourceResourceFromMediapackagechannel", ChannelArgs.builder()
.channelId("string")
.description("string")
.tags(Map.of("string", "string"))
.build());
examplechannel_resource_resource_from_mediapackagechannel = aws.mediapackage.Channel("examplechannelResourceResourceFromMediapackagechannel",
channel_id="string",
description="string",
tags={
"string": "string",
})
const examplechannelResourceResourceFromMediapackagechannel = new aws.mediapackage.Channel("examplechannelResourceResourceFromMediapackagechannel", {
channelId: "string",
description: "string",
tags: {
string: "string",
},
});
type: aws:mediapackage:Channel
properties:
channelId: string
description: string
tags:
string: string
Channel Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Channel resource accepts the following input properties:
- Channel
Id string - A unique identifier describing the channel
- Description string
- A description of the channel
- Dictionary<string, string>
- A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- Channel
Id string - A unique identifier describing the channel
- Description string
- A description of the channel
- map[string]string
- A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- channel
Id String - A unique identifier describing the channel
- description String
- A description of the channel
- Map<String,String>
- A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- channel
Id string - A unique identifier describing the channel
- description string
- A description of the channel
- {[key: string]: string}
- A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- channel_
id str - A unique identifier describing the channel
- description str
- A description of the channel
- Mapping[str, str]
- A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- channel
Id String - A unique identifier describing the channel
- description String
- A description of the channel
- Map<String>
- A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
Outputs
All input properties are implicitly available as output properties. Additionally, the Channel resource produces the following output properties:
- Arn string
- The ARN of the channel
- Hls
Ingests List<ChannelHls Ingest> - A single item list of HLS ingest information
- Id string
- The provider-assigned unique ID for this managed resource.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
- The ARN of the channel
- Hls
Ingests []ChannelHls Ingest - A single item list of HLS ingest information
- Id string
- The provider-assigned unique ID for this managed resource.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The ARN of the channel
- hls
Ingests List<ChannelHls Ingest> - A single item list of HLS ingest information
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
- The ARN of the channel
- hls
Ingests ChannelHls Ingest[] - A single item list of HLS ingest information
- id string
- The provider-assigned unique ID for this managed resource.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
- The ARN of the channel
- hls_
ingests Sequence[ChannelHls Ingest] - A single item list of HLS ingest information
- id str
- The provider-assigned unique ID for this managed resource.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The ARN of the channel
- hls
Ingests List<Property Map> - A single item list of HLS ingest information
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Look up Existing Channel Resource
Get an existing Channel resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ChannelState, opts?: CustomResourceOptions): Channel
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
channel_id: Optional[str] = None,
description: Optional[str] = None,
hls_ingests: Optional[Sequence[ChannelHlsIngestArgs]] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None) -> Channel
func GetChannel(ctx *Context, name string, id IDInput, state *ChannelState, opts ...ResourceOption) (*Channel, error)
public static Channel Get(string name, Input<string> id, ChannelState? state, CustomResourceOptions? opts = null)
public static Channel get(String name, Output<String> id, ChannelState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
- The ARN of the channel
- Channel
Id string - A unique identifier describing the channel
- Description string
- A description of the channel
- Hls
Ingests List<ChannelHls Ingest> - A single item list of HLS ingest information
- Dictionary<string, string>
- A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
- The ARN of the channel
- Channel
Id string - A unique identifier describing the channel
- Description string
- A description of the channel
- Hls
Ingests []ChannelHls Ingest Args - A single item list of HLS ingest information
- map[string]string
- A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The ARN of the channel
- channel
Id String - A unique identifier describing the channel
- description String
- A description of the channel
- hls
Ingests List<ChannelHls Ingest> - A single item list of HLS ingest information
- Map<String,String>
- A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
- The ARN of the channel
- channel
Id string - A unique identifier describing the channel
- description string
- A description of the channel
- hls
Ingests ChannelHls Ingest[] - A single item list of HLS ingest information
- {[key: string]: string}
- A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
- The ARN of the channel
- channel_
id str - A unique identifier describing the channel
- description str
- A description of the channel
- hls_
ingests Sequence[ChannelHls Ingest Args] - A single item list of HLS ingest information
- Mapping[str, str]
- A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The ARN of the channel
- channel
Id String - A unique identifier describing the channel
- description String
- A description of the channel
- hls
Ingests List<Property Map> - A single item list of HLS ingest information
- Map<String>
- A map of tags to assign to the resource. .If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Supporting Types
ChannelHlsIngest, ChannelHlsIngestArgs
- Ingest
Endpoints List<ChannelHls Ingest Ingest Endpoint> - A list of the ingest endpoints
- Ingest
Endpoints []ChannelHls Ingest Ingest Endpoint - A list of the ingest endpoints
- ingest
Endpoints List<ChannelHls Ingest Ingest Endpoint> - A list of the ingest endpoints
- ingest
Endpoints ChannelHls Ingest Ingest Endpoint[] - A list of the ingest endpoints
- ingest_
endpoints Sequence[ChannelHls Ingest Ingest Endpoint] - A list of the ingest endpoints
- ingest
Endpoints List<Property Map> - A list of the ingest endpoints
ChannelHlsIngestIngestEndpoint, ChannelHlsIngestIngestEndpointArgs
Import
Using pulumi import
, import Media Package Channels using the channel ID. For example:
$ pulumi import aws:mediapackage/channel:Channel kittens kittens-channel
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.