public class TrustedSigners
extends java.lang.Object
implements java.io.Serializable
A complex type that specifies the AWS accounts, if any, that you want to allow to create signed URLs for private content. If you want to require signed URLs in requests for objects in the target origin that match the PathPattern for this cache behavior, specify true for Enabled, and specify the applicable values for Quantity and Items. For more information, go to Using a Signed URL to Serve Private Content in the Amazon CloudFront Developer Guide. If you don't want to require signed URLs in requests for objects that match PathPattern, specify false for Enabled and 0 for Quantity. Omit Items. To add, change, or remove one or more trusted signers, change Enabled to true (if it's currently false), change Quantity as applicable, and specify all of the trusted signers that you want to include in the updated distribution.
| コンストラクタと説明 |
|---|
TrustedSigners()
Default constructor for a new TrustedSigners object.
|
TrustedSigners(java.util.List<java.lang.String> items)
Constructs a new TrustedSigners object.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.Boolean |
getEnabled()
Specifies whether you want to require end users to use signed URLs to
access the files specified by PathPattern and TargetOriginId.
|
java.util.List<java.lang.String> |
getItems()
Optional: A complex type that contains trusted signers for this cache
behavior.
|
java.lang.Integer |
getQuantity()
The number of trusted signers for this cache behavior.
|
int |
hashCode() |
java.lang.Boolean |
isEnabled()
Specifies whether you want to require end users to use signed URLs to
access the files specified by PathPattern and TargetOriginId.
|
void |
setEnabled(java.lang.Boolean enabled)
Specifies whether you want to require end users to use signed URLs to
access the files specified by PathPattern and TargetOriginId.
|
void |
setItems(java.util.Collection<java.lang.String> items)
Optional: A complex type that contains trusted signers for this cache
behavior.
|
void |
setQuantity(java.lang.Integer quantity)
The number of trusted signers for this cache behavior.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
TrustedSigners |
withEnabled(java.lang.Boolean enabled)
Specifies whether you want to require end users to use signed URLs to
access the files specified by PathPattern and TargetOriginId.
|
TrustedSigners |
withItems(java.util.Collection<java.lang.String> items)
Optional: A complex type that contains trusted signers for this cache
behavior.
|
TrustedSigners |
withItems(java.lang.String... items)
Optional: A complex type that contains trusted signers for this cache
behavior.
|
TrustedSigners |
withQuantity(java.lang.Integer quantity)
The number of trusted signers for this cache behavior.
|
public TrustedSigners()
public TrustedSigners(java.util.List<java.lang.String> items)
items - Optional: A complex type that contains trusted signers
for this cache behavior. If Quantity is 0, you can omit Items.public java.lang.Boolean isEnabled()
public void setEnabled(java.lang.Boolean enabled)
enabled - Specifies whether you want to require end users to use signed URLs to
access the files specified by PathPattern and TargetOriginId.public TrustedSigners withEnabled(java.lang.Boolean enabled)
Returns a reference to this object so that method calls can be chained together.
enabled - Specifies whether you want to require end users to use signed URLs to
access the files specified by PathPattern and TargetOriginId.public java.lang.Boolean getEnabled()
public java.lang.Integer getQuantity()
public void setQuantity(java.lang.Integer quantity)
quantity - The number of trusted signers for this cache behavior.public TrustedSigners withQuantity(java.lang.Integer quantity)
Returns a reference to this object so that method calls can be chained together.
quantity - The number of trusted signers for this cache behavior.public java.util.List<java.lang.String> getItems()
public void setItems(java.util.Collection<java.lang.String> items)
items - Optional: A complex type that contains trusted signers for this cache
behavior. If Quantity is 0, you can omit Items.public TrustedSigners withItems(java.lang.String... items)
Returns a reference to this object so that method calls can be chained together.
items - Optional: A complex type that contains trusted signers for this cache
behavior. If Quantity is 0, you can omit Items.public TrustedSigners withItems(java.util.Collection<java.lang.String> items)
Returns a reference to this object so that method calls can be chained together.
items - Optional: A complex type that contains trusted signers for this cache
behavior. If Quantity is 0, you can omit Items.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object