@Stability(value=Stable)
public static interface CfnPackagingConfiguration.SpekeKeyProviderProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.mediapackage.*;
SpekeKeyProviderProperty spekeKeyProviderProperty = SpekeKeyProviderProperty.builder()
.roleArn("roleArn")
.systemIds(List.of("systemIds"))
.url("url")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnPackagingConfiguration.SpekeKeyProviderProperty.Builder
A builder for
CfnPackagingConfiguration.SpekeKeyProviderProperty |
static class |
CfnPackagingConfiguration.SpekeKeyProviderProperty.Jsii$Proxy
An implementation for
CfnPackagingConfiguration.SpekeKeyProviderProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnPackagingConfiguration.SpekeKeyProviderProperty.Builder |
builder() |
String |
getRoleArn()
The ARN for the IAM role that's granted by the key provider to provide access to the key provider API.
|
List<String> |
getSystemIds()
List of unique identifiers for the DRM systems to use, as defined in the CPIX specification.
|
String |
getUrl()
URL for the key provider's key retrieval API endpoint.
|
@Stability(value=Stable) @NotNull String getRoleArn()
Valid format: arn:aws:iam::{accountID}:role/{name}
@Stability(value=Stable) @NotNull List<String> getSystemIds()
@Stability(value=Stable) @NotNull String getUrl()
Must start with https://.
@Stability(value=Stable) static CfnPackagingConfiguration.SpekeKeyProviderProperty.Builder builder()
Copyright © 2022. All rights reserved.